diaspora/spec/controllers/jasmine_fixtures/users_spec.rb
2016-11-27 21:27:12 +01:00

17 lines
371 B
Ruby

describe UsersController, type: :controller do
before do
sign_in alice, scope: :user
end
describe "#getting_started" do
before do
alice.invited_by = bob
alice.save!
end
it "generates a jasmine fixture with no query", fixture: true do
get :getting_started
save_fixture(html_for("body"), "getting_started")
end
end
end