hmci/src/test/groovy/biz/nellemann/hmci/ConfigurationTest.groovy

34 lines
630 B
Groovy

package biz.nellemann.hmci
import spock.lang.Specification
import java.nio.file.Path
import java.nio.file.Paths
class ConfigurationTest extends Specification {
Path testConfigurationFile = Paths.get(getClass().getResource('/hmci.toml').toURI())
void "test parsing of configuration file"() {
when:
Configuration conf = new Configuration(testConfigurationFile)
then:
conf != null
}
void "test energy flag, default setting"() {
when:
Configuration conf = new Configuration(testConfigurationFile)
then:
!conf.getHmc().get(0).energy
}
}