9 lines
159 B
Ruby
9 lines
159 B
Ruby
require 'test_helper'
|
|
|
|
class OrdersControllerTest < ActionController::TestCase
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
end
|