Skip to content

Commit 2b54146

Browse files
committed
fixup! Change the wording to match balancing examples
1 parent 5bab9ea commit 2b54146

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spec/generators/rspec/install/install_generator_spec.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,28 +99,28 @@ def filter_rails_from_backtrace
9999
hide_const("ActiveRecord")
100100
end
101101

102-
it "requires rspec/rails" do
102+
specify "requiring rspec/rails" do
103103
run_generator
104104
expect(rails_helper).to require_rspec_rails
105105
end
106106

107-
it "does not include config.use_active_record" do
107+
specify "without ActiveRecord" do
108108
run_generator
109109
expect(rails_helper).not_to have_active_record_enabled
110110
expect(rails_helper).to have_active_record_disabled
111111
end
112112

113-
it "does not include config.fixture_path" do
113+
specify "without fixture path" do
114114
run_generator
115115
expect(rails_helper).not_to have_a_fixture_path
116116
end
117117

118-
it "does not include config.use_transactional_fixtures" do
118+
specify "without transactional fixtures" do
119119
run_generator
120120
expect(rails_helper).not_to have_transactional_fixtures_enabled
121121
end
122122

123-
it "does not check use active record migration options" do
123+
specify "without schema maintenance checks" do
124124
run_generator
125125
expect(rails_helper).not_to use_active_record_migration
126126
expect(rails_helper).not_to maintain_test_schema

0 commit comments

Comments
 (0)