From 5462a1e56abf70486dc59593dde6ecb95a072026 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 20 Mar 2024 11:00:31 -0400 Subject: Added some admin dashboard stats --- test/fixtures/globals.yml | 11 +++++++++++ test/models/global_test.rb | 7 +++++++ 2 files changed, 18 insertions(+) create mode 100644 test/fixtures/globals.yml create mode 100644 test/models/global_test.rb (limited to 'test') diff --git a/test/fixtures/globals.yml b/test/fixtures/globals.yml new file mode 100644 index 0000000..bb636b7 --- /dev/null +++ b/test/fixtures/globals.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + key: MyString + string_value: MyString + int_value: 1 + +two: + key: MyString + string_value: MyString + int_value: 1 diff --git a/test/models/global_test.rb b/test/models/global_test.rb new file mode 100644 index 0000000..2e42136 --- /dev/null +++ b/test/models/global_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class GlobalTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end -- cgit 1.4.1