File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
spec/generators/rspec/install Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -99,28 +99,28 @@ def filter_rails_from_backtrace
99
99
hide_const ( "ActiveRecord" )
100
100
end
101
101
102
- it "requires rspec/rails" do
102
+ specify "requiring rspec/rails" do
103
103
run_generator
104
104
expect ( rails_helper ) . to require_rspec_rails
105
105
end
106
106
107
- it "does not include config.use_active_record " do
107
+ specify "without ActiveRecord " do
108
108
run_generator
109
109
expect ( rails_helper ) . not_to have_active_record_enabled
110
110
expect ( rails_helper ) . to have_active_record_disabled
111
111
end
112
112
113
- it "does not include config.fixture_path " do
113
+ specify "without fixture path " do
114
114
run_generator
115
115
expect ( rails_helper ) . not_to have_a_fixture_path
116
116
end
117
117
118
- it "does not include config.use_transactional_fixtures " do
118
+ specify "without transactional fixtures " do
119
119
run_generator
120
120
expect ( rails_helper ) . not_to have_transactional_fixtures_enabled
121
121
end
122
122
123
- it "does not check use active record migration options " do
123
+ specify "without schema maintenance checks " do
124
124
run_generator
125
125
expect ( rails_helper ) . not_to use_active_record_migration
126
126
expect ( rails_helper ) . not_to maintain_test_schema
You can’t perform that action at this time.
0 commit comments