Skip to content

Commit

Permalink
Exclude some of the integrations tests from mutations
Browse files Browse the repository at this point in the history
It seems we have this covered by lower level tests already, which is good.
They still remain as tests (to help future big refactorings), but not part of mutation anymore - gaining speed this way.
  • Loading branch information
andrzejkrzywda committed Jan 13, 2024
1 parent bd9b174 commit f5b1371
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion rails_application/test/integration/client_orders_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

class ClientOrdersTests < InMemoryRESIntegrationTestCase
include ActionView::Helpers::NumberHelper
cover "ClientOrders*"

def setup
super
Expand Down
1 change: 0 additions & 1 deletion rails_application/test/integration/discount_test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
require "test_helper"

class DiscountTest < InMemoryRESIntegrationTestCase
cover "Orders*"

def setup
super
Expand Down
1 change: 0 additions & 1 deletion rails_application/test/integration/login_test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
require "test_helper"

class LoginTest < InMemoryRESIntegrationTestCase
cover "Authentication*"

def setup
super
Expand Down
1 change: 0 additions & 1 deletion rails_application/test/integration/orders_test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
require "test_helper"

class OrdersTest < InMemoryRESIntegrationTestCase
cover "Orders*"

def setup
super
Expand Down
1 change: 0 additions & 1 deletion rails_application/test/integration/products_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

class ProductsTest < InMemoryRESIntegrationTestCase
include ActionView::Helpers::NumberHelper
cover "Products*"

def setup
super
Expand Down
1 change: 0 additions & 1 deletion rails_application/test/integration/public_offer_test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
require "test_helper"

class PublicOfferTest < InMemoryRESIntegrationTestCase
cover "PublicOffer*"

def setup
super
Expand Down

0 comments on commit f5b1371

Please sign in to comment.