Sha256: 0f58ddadfe4e9c7d3fbeb7174550c8e3799edbb79df33c45482db5708217571d

Contents?: true

Size: 544 Bytes

Versions: 3

Compression:

Stored size: 544 Bytes

Contents

Feature: Extract rows from a database using a custom SQL script

  @database
  Scenario:
    Given a blogposts database table with rows:
       | id | title              | author          |
       | 1  | The great tool     | Tim Taylor      |
       | 2  | A footbal anecdote | John Miller     |
       | 3  | Historical music   | John Mellencamp |

     When I create a Itiel::Extract::CustomSQL object with the query:
     """
       SELECT * FROM blogposts WHERE id = 3;
     """

     Then the extraction for that object should have 1 row

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
itiel-0.1.2 features/extract/sql_script.feature
itiel-0.1.1 features/extract/sql_script.feature
itiel-0.1.0 features/extract/sql_script.feature