0

What's a decent way of doing it? Preferably matching a regexp.

my current code is like this:

describe "get #show" do
  context "signed in" do
    it "should have a link to edit profile" do
      # i sign in the user
      get :show
      response # i don't know what to do here
    end
  end
end

Thanks for the help!

4

1 に答える 1

1

受け入れテストを行おうとしているようです。これは、おそらくCapybaraに委ねるべきであることを意味します。次に、次のような魔法を行うことができます

page.should have_css('edit_link', text: 'Edit me')

于 2012-08-29T01:23:56.197 に答える