Move all test data under ./data dir

This commit is contained in:
Dan Sosedoff
2015-03-16 23:41:53 -05:00
parent cc983f9ad6
commit 14cc8d5c24
7 changed files with 6 additions and 6 deletions

5
data/bookmark.toml Normal file
View File

@@ -0,0 +1,5 @@
host = "localhost"
port = "5432"
user = "postgres"
database = "mydatabase"
ssl = "disable"

1
data/bookmark_url.toml Normal file
View File

@@ -0,0 +1 @@
url = "postgres://username:password@host:port/database?sslmode=disable"

1869
data/booktown.sql Normal file

File diff suppressed because it is too large Load Diff

1
data/invalid.toml Normal file
View File

@@ -0,0 +1 @@
invalid encoding

5
data/invalid_port.toml Normal file
View File

@@ -0,0 +1,5 @@
host = "localhost"
port = 5432
user = "postgres"
database = "mydatabase"
ssl = "disable"