Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing file for running 'gulp testIntegration' #821

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions tests-integration/spark/model/src/SparkTests/AntiqueRulesTests.elm
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module SparkTests.AntiqueRulesTests exposing (..)

import SparkTests.DataDefinition.Persistence.Income.AntiqueShop exposing (Antique)
import SparkTests.Rules.Income.Antique exposing (..)

antique_items : List Antique -> List Antique
antique_items antiques =
List.filter is_item_antique antiques


vintage_items : List Antique -> List Antique
vintage_items antiques =
List.filter is_item_vintage antiques


worth_thousands_items : List Antique -> List Antique
worth_thousands_items antiques =
List.filter is_item_worth_thousands antiques


worth_millions_items : List Antique -> List Antique
worth_millions_items antiques =
List.filter is_item_worth_millions antiques


seized_items : List Antique -> List Antique
seized_items antiques =
List.filter seize_item antiques