diff --git a/tests/fixtures/sample_files.py b/tests/fixtures/sample_files.py index 33035a4..2dd866e 100644 --- a/tests/fixtures/sample_files.py +++ b/tests/fixtures/sample_files.py @@ -10,38 +10,38 @@ SAMPLE_JSON = """{ "ssl": false }, "tags": ["python", "cli"] - } +} """ SAMPLE_YAML = """name: test-project - version: '1.0.0' - debug: true - database: - host: localhost - port: 5432 - ssl: false - tags: - - python - - cli +version: '1.0.0' +debug: true +database: + host: localhost + port: 5432 + ssl: false +tags: + - python + - cli """ SAMPLE_TOML = """name = "test-project" - version = "1.0.0" - debug = true - - [database] - host = "localhost" - port = 5432 - ssl = false - - tags = ["python", "cli"] +version = "1.0.0" +debug = true + +[database] +host = "localhost" +port = 5432 +ssl = false + +tags = ["python", "cli"] """ SAMPLE_ENV = """NAME=test-project - VERSION=1.0.0 - DEBUG=true - DATABASE_HOST=localhost - DATABASE_PORT=5432 - DATABASE_SSL=false - TAGS=python,cli +VERSION=1.0.0 +DEBUG=true +DATABASE_HOST=localhost +DATABASE_PORT=5432 +DATABASE_SSL=false +TAGS=python,cli """