File: dsn.feature

package info (click to toggle)
osm2pgsql 2.2.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,772 kB
  • sloc: cpp: 60,940; python: 1,115; ansic: 763; sh: 25; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Feature: Tests for various DB connection parameters

    Scenario Outline:
        Given the OSM data
            """
            n34 Tamenity=restaurant x77 y45.3
            """

        When running osm2pgsql pgsql with parameters
            | -d |
            | <connection_parameter> |

        Then table planet_osm_point has 1 row

        Examples:
            | connection_parameter    |
            | {TEST_DB}               |
            | dbname={TEST_DB}        |
            | postgresql:///{TEST_DB} |
            | postgres:///{TEST_DB}   |