Skip to content

Commit

Permalink
fix up gitignore and test output files
Browse files Browse the repository at this point in the history
  • Loading branch information
Imran Rashid committed Jul 9, 2014
1 parent 826e3d6 commit e1c6b7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Expand Up @@ -5,6 +5,7 @@
.classpath
*~
build
test_output

# sbt specific
dist/*
Expand All @@ -18,7 +19,3 @@ project/plugins/project/
.scala_dependencies
.idea
*.iml

/test_output/PropertiesConfigTest/load_properties_test.properties
/arg_builder_test_output.properties
/test_output/PropertiesConfigTest/roundtrip_properties_test.properties
Expand Up @@ -27,9 +27,12 @@ class ArgBuilderTest extends FunSuite with Matchers {
args.propertyFile should be (null)
}

val dir = new File("test_output/" + getClass.getSimpleName)
dir.mkdirs()

test("prompting & saving") {
val args = new BuilderTestArgs()
val propFile = "arg_builder_test_output.properties"
val propFile = new File(dir, "arg_builder_test_output.properties").getAbsolutePath
val input = fixedInputStream(
//empty string name
"","\"\"",
Expand Down

0 comments on commit e1c6b7a

Please sign in to comment.