Sha256: d51dfeb44687c711cc9e133e4b06431a8fd0d0cf913e8ef184dacfa2b037e649

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

Feature: dump data as INSERT statements

  sqldump can dump data as INSERT statements so that the corresponding data can be inserted in a new database

  Scenario: simple table
    Given a database "foo.sqlite" with a table "number" with the following data
      | number[int] |
      | 42          |
    When I run `sqldump -d foo.sqlite -i number`
    Then it should pass with:
    """
    INSERT INTO number (number) VALUES (42);
    """

  Scenario: null value
    Given a database "foo.sqlite" with a table "number" with the following data
      | number[int] |
      | <null>      |
    When I run `sqldump -d foo.sqlite -i number`
    Then it should pass with:
    """
    INSERT INTO number (number) VALUES (NULL);
    """

  Scenario: pretty print
    Given a database "foo.sqlite" with a table "numbers_and_strings" with the following data
      | number[int] | string |
      | 42          | thingy |
    When I run `sqldump -d foo.sqlite -it numbers_and_strings`
    Then it should pass with:
    """
    INSERT INTO numbers_and_strings (
        number,
        string
    )
    VALUES (
        42,
        'thingy'
    );
    """

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sqldump-0.0.3 features/dump_as_insert.feature