This repository has been archived by the owner on Jul 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup -- fix naming from
test/shopify_liquid/scope_index
to `test…
…/shopify_liquid/source_index/`
- Loading branch information
1 parent
c8900a0
commit 95f2009
Showing
10 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'test_helper' | ||
|
||
module ThemeCheck | ||
module ShopifyLiquid | ||
class SourceIndex | ||
class FilterStateTest < Minitest::Test | ||
def test_state_changes | ||
FilterState.mark_up_to_date | ||
refute(FilterState.outdated?) | ||
|
||
FilterState.mark_outdated | ||
assert(FilterState.outdated?) | ||
end | ||
end | ||
end | ||
end | ||
end |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'test_helper' | ||
|
||
module ThemeCheck | ||
module ShopifyLiquid | ||
class SourceIndex | ||
class ObjectStateTest < Minitest::Test | ||
def test_state_changes | ||
ObjectState.mark_up_to_date | ||
refute(ObjectState.outdated?) | ||
|
||
ObjectState.mark_outdated | ||
assert(ObjectState.outdated?) | ||
end | ||
end | ||
end | ||
end | ||
end |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'test_helper' | ||
|
||
module ThemeCheck | ||
module ShopifyLiquid | ||
class SourceIndex | ||
class TagStateTest < Minitest::Test | ||
def test_state_changes | ||
TagState.mark_up_to_date | ||
refute(TagState.outdated?) | ||
|
||
TagState.mark_outdated | ||
assert(TagState.outdated?) | ||
end | ||
end | ||
end | ||
end | ||
end |