Skip to content

Commit

Permalink
Merge pull request #821 from CodethinkLabs/jonathanmaw/fix-tests-afte…
Browse files Browse the repository at this point in the history
…r-csv

Add missing file for running 'gulp testIntegration'
  • Loading branch information
stephengoldbaum authored Jul 25, 2022
2 parents 9abde7e + 2bd8f5e commit b506c8a
Showing 1 changed file with 28 additions and 0 deletions.
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

0 comments on commit b506c8a

Please sign in to comment.