Skip to content

Commit

Permalink
used maven instead of the wrapper for the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ghacupha committed Mar 20, 2018
1 parent 513ba96 commit 4cfb697
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
language: java
install: true
before_install:
- chmod +x mvnw

script:
- mvnw compile
- mvnw package
- mvnw test
- mvnw install
- mvn compile
- mvn package
- mvn test
- mvn install
jdk:
- oraclejdk8
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
package io.github.ghacupha.keeper.book;

import io.github.ghacupha.keeper.book.unit.money.Cash;
import io.github.ghacupha.keeper.book.unit.money.HardCash;
import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.*;

public class EmoneyTest {
public class CashTest {

private Cash cash;

@Before
public void setUp() throws Exception {

cash = HardCash.shilling(106.50);
}

@Test
Expand Down

0 comments on commit 4cfb697

Please sign in to comment.