デバイス認証のテストに rspec を使用しています。以下は私のコードです
require 'spec_helper'
describe User do
describe "user registration" do
it "allows new users to register with an email address and password" do
get "/users/sign_up"
fill_in "Email", :with => "abc@example.com"
fill_in "Password", :with => "abc123"
fill_in "Password confirmation", :with => "abc123"
click_button "Sign up"
response.should have_content("Welcome! You have signed up successfully.")
end
end
end
次のエラーが表示されます。
「NoMethodError: 未定義のメソッド `get' for #」