From 4a9bf38ef61b39e482458ba56cd1e6fea379b4d7 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 21 Nov 2025 21:01:50 -0500 Subject: Added "listening to" box in sidebar --- test/fixtures/scrobbles.yml | 13 +++++++++++++ test/models/scrobble_test.rb | 7 +++++++ 2 files changed, 20 insertions(+) create mode 100644 test/fixtures/scrobbles.yml create mode 100644 test/models/scrobble_test.rb (limited to 'test') diff --git a/test/fixtures/scrobbles.yml b/test/fixtures/scrobbles.yml new file mode 100644 index 0000000..9ca535d --- /dev/null +++ b/test/fixtures/scrobbles.yml @@ -0,0 +1,13 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: MyString + artist: MyString + album: MyString + image: MyString + +two: + title: MyString + artist: MyString + album: MyString + image: MyString diff --git a/test/models/scrobble_test.rb b/test/models/scrobble_test.rb new file mode 100644 index 0000000..48541da --- /dev/null +++ b/test/models/scrobble_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class ScrobbleTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end -- cgit 1.4.1