diaspora/spec/controllers/jasmine_fixtures/users_spec.rb
2016-08-11 12:25:36 +03:00

19 lines
394 B
Ruby

require "spec_helper"
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