Top Level Namespace
- Includes:
- DeveloperExceptions
Defined Under Namespace
Instance Method Summary collapse
- #anchors ⇒ Object
- #data ⇒ Object
- #datestamp ⇒ Object
- #db ⇒ Object
- #deleted_records ⇒ Object
- #exec(*args) ⇒ Object
- #execute(*args, **opts, &block) ⇒ Object
- #fixture ⇒ Object
- #fox ⇒ Object
- #inserted_records ⇒ Object
- #pop_transaction ⇒ Object
- #postspec ⇒ Object
- #push_transaction ⇒ Object
- #statement(*args, **opts, &block) ⇒ Object
- #timestamp ⇒ Object
- #timestamptz ⇒ Object
- #transaction(&block) ⇒ Object
- #updated_records ⇒ Object
- #use(*args) ⇒ Object
Instance Method Details
#anchors ⇒ Object
16 |
# File 'lib/postspec_helper.rb', line 16 def anchors() postspec.anchors end |
#data ⇒ Object
12 |
# File 'lib/postspec_helper.rb', line 12 def data() postspec.data end |
#datestamp ⇒ Object
11 |
# File 'lib/postspec_helper.rb', line 11 def datestamp() postspec.datestamp end |
#db ⇒ Object
8 |
# File 'lib/postspec_helper.rb', line 8 def db() postspec.db end |
#deleted_records ⇒ Object
15 |
# File 'lib/postspec_helper.rb', line 15 def deleted_records() postspec.deleted end |
#exec(*args) ⇒ Object
5 |
# File 'lib/postspec_helper.rb', line 5 def exec(*args) postspec.conn.execute(*args) end |
#execute(*args, **opts, &block) ⇒ Object
6 |
# File 'lib/postspec_helper.rb', line 6 def execute(*args, **opts, &block) postspec.execute(*args, **opts, &block) end |
#fixture ⇒ Object
17 |
# File 'lib/postspec_helper.rb', line 17 def fixture() postspec.fixture end |
#fox ⇒ Object
7 |
# File 'lib/postspec_helper.rb', line 7 def fox() postspec.fox end |
#inserted_records ⇒ Object
13 |
# File 'lib/postspec_helper.rb', line 13 def inserted_records() postspec.inserted end |
#pop_transaction ⇒ Object
20 |
# File 'lib/postspec_helper.rb', line 20 def pop_transaction() postspec.pop_transaction end |
#push_transaction ⇒ Object
19 |
# File 'lib/postspec_helper.rb', line 19 def push_transaction() postspec.push_transaction end |
#statement(*args, **opts, &block) ⇒ Object
4 |
# File 'lib/postspec_helper.rb', line 4 def statement(*args, **opts, &block) postspec.statement(*args, **opts, &block) end |
#timestamp ⇒ Object
9 |
# File 'lib/postspec_helper.rb', line 9 def () postspec. end |
#timestamptz ⇒ Object
10 |
# File 'lib/postspec_helper.rb', line 10 def () postspec. end |
#transaction(&block) ⇒ Object
18 |
# File 'lib/postspec_helper.rb', line 18 def transaction(&block) postspec.transaction(&block) end |
#updated_records ⇒ Object
14 |
# File 'lib/postspec_helper.rb', line 14 def updated_records() postspec.updated end |
#use(*args) ⇒ Object
3 |
# File 'lib/postspec_helper.rb', line 3 def use(*args) postspec.use(*args) end |