-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #821 from CodethinkLabs/jonathanmaw/fix-tests-afte…
…r-csv Add missing file for running 'gulp testIntegration'
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
tests-integration/spark/model/src/SparkTests/AntiqueRulesTests.elm
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,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 |