summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2021-05-20 16:09:30 -0600
committermo khan <mo@mokhan.ca>2021-05-20 16:11:12 -0600
commite0af4e331d04cc81715eeafbcedaab8a81583488 (patch)
tree84c4ec7f44c5c6b38b5e695070714e7db30abb9e /test
parent21b1182a4c037d4519b11bf043e6f375803930dd (diff)
chore: remove distracting files
Diffstat (limited to 'test')
-rw-r--r--test/controllers/.keep0
-rw-r--r--test/fixtures/files/.keep0
-rw-r--r--test/fixtures/sparkles.yml16
-rw-r--r--test/helpers/.keep0
-rw-r--r--test/models/.keep0
-rw-r--r--test/models/sparkle_test.rb7
-rw-r--r--test/test_helper.rb5
7 files changed, 8 insertions, 20 deletions
diff --git a/test/controllers/.keep b/test/controllers/.keep
deleted file mode 100644
index e69de29..0000000
--- a/test/controllers/.keep
+++ /dev/null
diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep
deleted file mode 100644
index e69de29..0000000
--- a/test/fixtures/files/.keep
+++ /dev/null
diff --git a/test/fixtures/sparkles.yml b/test/fixtures/sparkles.yml
index ce97be4..de263da 100644
--- a/test/fixtures/sparkles.yml
+++ b/test/fixtures/sparkles.yml
@@ -1,11 +1,11 @@
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
-one:
- reason: MyString
- sparkler: one
- sparklee: one
+friendship:
+ reason: for being an awesome friend!
+ sparkler: mona
+ sparklee: billie
-two:
- reason: MyString
- sparkler: two
- sparklee: two
+mentorship:
+ reason: for helping me with my homework.
+ sparkler: billie
+ sparklee: mona
diff --git a/test/helpers/.keep b/test/helpers/.keep
deleted file mode 100644
index e69de29..0000000
--- a/test/helpers/.keep
+++ /dev/null
diff --git a/test/models/.keep b/test/models/.keep
deleted file mode 100644
index e69de29..0000000
--- a/test/models/.keep
+++ /dev/null
diff --git a/test/models/sparkle_test.rb b/test/models/sparkle_test.rb
deleted file mode 100644
index 9d16b94..0000000
--- a/test/models/sparkle_test.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-require "test_helper"
-
-class SparkleTest < ActiveSupport::TestCase
- # test "the truth" do
- # assert true
- # end
-end
diff --git a/test/test_helper.rb b/test/test_helper.rb
index 47b598d..75fc9b6 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -3,11 +3,6 @@ require_relative "../config/environment"
require "rails/test_help"
class ActiveSupport::TestCase
- # Run tests in parallel with specified workers
parallelize(workers: :number_of_processors)
-
- # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
fixtures :all
-
- # Add more helper methods to be used by all tests here...
end