1

アップデート:

私のテストでは、ユーザー情報が送信されませんでした。関連するコードは、前の章の演習にありました。

  describe "after saving user" do
    before { click_button submit }
    let(:user) { User.find_by_email('user@example.com') }
    it { should have_selector('title', text: user.name) }
    it { should have_selector('div.alert.alert-success', text: 'Welcome') }
    it { should have_link('Profile') }
  end

/アップデート

セクション 8.2.5 (サインアップ時のサインイン) を完了しました。アプリは説明どおりに動作します。

  • ユーザーはサインアップ時にサインインしています
  • その後、プロフィール ページにリダイレクトされます
  • ヘッダーが変更され、「サインアウト」リンクが含まれるようになりました。

しかし、「サインアウト」リンクのテストは失敗します。これが私のコードです。すべてチュートリアルからコピーされています。

関連するコントローラー コード (users_controller.rb):

def create
  @user = User.new(params[:user])
  if @user.save
    sign_in @user
    flash[:success] = "Welcome to the Sample App!"
    redirect_to @user
  else
    render 'new'
  end
end

関連するビュー コード (_header.html.erb):

<ul class="dropdown-menu">
  <li><%= link_to "Profile", current_user %></li>
  <li><%= link_to "Settings", '#' %></li>
  <li class="divider"></li>
  <li>
    <%= link_to "Sign out", signout_path, method: "delete" %>
  </li>
</ul>

関連するテスト コード (user_pages_spec.rb):

describe "signup" do

  before { visit signup_path }

  let(:submit) { "Create my account" }

  describe "with invalid information" do
    it "should not create a user" do
      expect { click_button submit }.not_to change(User, :count)
    end
  end

  describe "with valid information" do
    before do
      fill_in "Name",         with: "Example User"
      fill_in "Email",        with: "user@example.com"
      fill_in "Password",     with: "foobar"
      fill_in "Confirmation", with: "foobar"
    end

    it "should create a user" do
      expect { click_button submit }.to change(User, :count).by(1)
    end

    describe "after saving user" do
      it { should have_link('Profile') }
    end
  end
end

エラーはrspec ./spec/requests/user_pages_spec.rb:47 # User pages signup with valid information after saving user

ありがとう!

4

1 に答える 1

1

最後の「describe」ブロックは次のようになります。

  describe "after saving user" do
    before { click_button submit }
    it { should have_content('Profile') }
  end

テストでは、ページに適切なコンテンツがあるかどうかを調べる前に、[送信]ボタンをクリックしませんでした。

于 2012-07-19T14:36:27.090 に答える