Skip to content

Commit

Permalink
127 Remove redundant spec types
Browse files Browse the repository at this point in the history
  • Loading branch information
cpreisinger committed Aug 26, 2024
1 parent 784335b commit d28438d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ Rails/SkipsModelValidations:
RSpec/DescribeClass:
Exclude:
- 'spec/lib/tasks/**/*'
- 'spec/views/**/*'

RSpec/DescribedClass:
SkipBlocks: true
Expand Down
2 changes: 1 addition & 1 deletion spec/helpers/evaluations_helper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
# end
# end
# end
RSpec.describe EvaluationsHelper, type: :helper do
RSpec.describe EvaluationsHelper do
pending "add some examples to (or delete) #{__FILE__}"
end
2 changes: 1 addition & 1 deletion spec/requests/evaluations_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'rails_helper'

RSpec.describe "Evaluations", type: :request do
RSpec.describe "Evaluations" do
describe "GET /index" do
it "returns http success" do
get "/evaluations"
Expand Down
2 changes: 1 addition & 1 deletion spec/views/evaluations/index.html.erb_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require 'rails_helper'

RSpec.describe "evaluations/index.html.erb", type: :view do
RSpec.describe "evaluations/index.html.erb" do
pending "add some examples to (or delete) #{__FILE__}"
end

0 comments on commit d28438d

Please sign in to comment.