fluentd-ui/spec/features/users_spec.rb
yoshihara b94d362125 Wrap the unlogined spec with new description
To distingish specs for logined user with the less indent.
2015-04-08 13:54:50 +09:00

12 lines
178 B
Ruby

require "spec_helper"
describe "users" do
describe "unlogined" do
let(:url) { user_path }
it_should_behave_like "login required"
end
describe "edit" do
end
end