acts_as_interval 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 311a63a375272f378945b7371914298222a57249
4
- data.tar.gz: 58eb67a65fa7b92b3d47ec12a1d37076363c6ec5
3
+ metadata.gz: 9419e58989c5e6ae715e0c914095ea3b10c79b05
4
+ data.tar.gz: 4c338b7b79d1e408761acaeba0500eb27bae565f
5
5
  SHA512:
6
- metadata.gz: 28877317782814440c417fe2acf8f5d7cdd37f36d06cdf023cc4425797c1da5b349037a3ec96a26957fa90c6c509187868d4e1a0c0322849d3c59a1c21ee0e45
7
- data.tar.gz: d553ea922869ed8ec444fc9023bcd2eb14ba5fa3030bd026cbd627859b23d87258096f5aeaaad0b37c5d49c783f305cb281689f255954659684c8fea1458fa23
6
+ metadata.gz: 3adf2730bcc260f6efe3f450be5dd5a17f1b92f8b8e522b663f9fd30452d6c406a0e2b75987296e30dd9e0b7149baf01d085f6f1f19227d86892ed68f65887bc
7
+ data.tar.gz: 25d8061f7887913aa7ebecbb2f6e0831b7f8a594efc622dd5406e6d1e956982cd0938f4e1f6ee9b111ea986b7ddf02426d2dce53ffa9a8abf9e96d1f2b886a29
@@ -16,14 +16,19 @@ module ActsAsInterval
16
16
  end
17
17
 
18
18
  module LocalInstanceMethods
19
- def intervals_before
20
- self.class.where('ends_at <= ?', self.send(start_field))
21
- end
22
- def intervals_after
23
- self.class.where('starts_at >= ?', self.send(end_field))
24
- end
25
- def overlapping_intervals
26
- self.class.where("DATEDIFF(#{start_field}, :my_end) * DATEDIFF(:my_start, #{end_field}) >= 0", my_start: self.send(start_field), my_end: self.send(end_field)).where.not(id: self.id)
19
+ def self.included(klass)
20
+ klass_name = klass.name.underscore.pluralize
21
+ define_method "past_#{klass_name}" do
22
+ self.class.where('ends_at <= ?', self.send(start_field))
23
+ end
24
+ define_method "future_#{klass_name}" do
25
+ self.class.where('starts_at >= ?', self.send(end_field))
26
+ end
27
+ define_method "overlapping_#{klass_name}" do
28
+ self.class.where("DATEDIFF(#{start_field}, :my_end) * DATEDIFF(:my_start, #{end_field}) >= 0", my_start: self.send(start_field), my_end: self.send(end_field)).where.not(id: self.id)
29
+ end
30
+ alias_method :intervals_before, "past_#{klass_name}"
31
+ alias_method :intervals_after, "future_#{klass_name}"
27
32
  end
28
33
  end
29
34
  end
@@ -1,3 +1,3 @@
1
1
  module ActsAsInterval
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,13 +1,25 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class ActsAsIntervalTest < ActiveSupport::TestCase
4
+ def test_future_interval_method
5
+ interval = Interval.new
6
+ assert_equal true, interval.respond_to?(:future_intervals)
7
+ end
8
+ def test_past_interval_method
9
+ interval = Interval.new
10
+ assert_equal true, interval.respond_to?(:past_intervals)
11
+ end
12
+ def test_overlapping_interval_method
13
+ interval = Interval.new
14
+ assert_equal true, interval.respond_to?(:overlapping_intervals)
15
+ end
4
16
  def test_intervals_before
5
17
  old_interval = Interval.create(starts_at: 1.month.ago, ends_at: 1.week.ago)
6
18
  older_interval = Interval.create(starts_at: 2.year.ago, ends_at: 1.year.ago)
7
19
  Interval.create(starts_at: 1.month.since, ends_at: 1.year.since)
8
20
  Interval.create(starts_at: 1.years.ago, ends_at: 1.years.since)
9
21
  new_interval = Interval.create(starts_at: 1.day.ago, ends_at: 1.hour.ago)
10
- assert_equal new_interval.intervals_before, [old_interval, older_interval]
22
+ assert_equal new_interval.past_intervals, [old_interval, older_interval]
11
23
  end
12
24
  def test_intervals_after
13
25
  Interval.create(starts_at: 1.month.ago, ends_at: 1.week.ago)
@@ -15,13 +27,6 @@ class ActsAsIntervalTest < ActiveSupport::TestCase
15
27
  after_interval = Interval.create(starts_at: 1.month.since, ends_at: 1.year.since)
16
28
  Interval.create(starts_at: 1.years.ago, ends_at: 1.years.since)
17
29
  new_interval = Interval.create(starts_at: 1.day.ago, ends_at: 1.hour.ago)
18
- assert_equal new_interval.intervals_after, [after_interval]
19
- end
20
- def test_intersecting_intervals
21
- my_interval = Interval.create(starts_at: 1.days.ago, ends_at: 1.days.since)
22
- Interval.create(starts_at: 1.year.ago, ends_at: 1.month.ago)
23
- Interval.create(starts_at: 1.year.since, ends_at: 2.years.since)
24
- intersecting_interval = Interval.create(starts_at: 1.month.ago, ends_at: 1.month.since)
25
- assert_equal my_interval.overlapping_intervals, [intersecting_interval]
30
+ assert_equal new_interval.future_intervals, [after_interval]
26
31
  end
27
32
  end
@@ -13,7 +13,7 @@ Rails.application.configure do
13
13
  config.eager_load = false
14
14
 
15
15
  # Configure static asset server for tests with Cache-Control for performance.
16
- config.serve_static_assets = true
16
+ config.serve_static_files = true
17
17
  config.static_cache_control = 'public, max-age=3600'
18
18
 
19
19
  # Show full error reports and disable caching.
@@ -36,4 +36,5 @@ Rails.application.configure do
36
36
 
37
37
  # Raises error for missing translations
38
38
  # config.action_view.raise_on_missing_translations = true
39
+ config.active_support.test_order = :sorted
39
40
  end
Binary file
@@ -72,3 +72,9 @@ Migrating to CreateIntervals (20150227133736)
72
72
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
73
73
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
74
74
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
75
+ Interval Load (8.4ms) SELECT "intervals".* FROM "intervals" ORDER BY "intervals"."id" ASC LIMIT 1
76
+ Interval Load (0.2ms) SELECT "intervals".* FROM "intervals" WHERE (DATEDIFF(starts_at, NULL) * DATEDIFF(NULL, ends_at) >= 0) AND ("intervals"."id" IS NOT NULL)
77
+ SQLite3::SQLException: no such function: DATEDIFF: SELECT "intervals".* FROM "intervals" WHERE (DATEDIFF(starts_at, NULL) * DATEDIFF(NULL, ends_at) >= 0) AND ("intervals"."id" IS NOT NULL)
78
+ Interval Load (0.4ms) SELECT "intervals".* FROM "intervals" ORDER BY "intervals"."id" ASC LIMIT 1
79
+ Interval Load (0.7ms) SELECT "intervals".* FROM "intervals" ORDER BY "intervals"."id" ASC LIMIT 1
80
+ Interval Load (0.2ms) SELECT "intervals".* FROM "intervals" ORDER BY "intervals"."id" ASC LIMIT 1
@@ -1584,3 +1584,2648 @@ ActsAsIntervalTest: test_intervals_before
1584
1584
   (0.1ms) RELEASE SAVEPOINT active_record_1
1585
1585
  Interval Load (0.2ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 15:04:37.070983')
1586
1586
   (0.1ms) rollback transaction
1587
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1588
+  (114.2ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
1589
+  (100.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1590
+  (0.2ms) select sqlite_version(*)
1591
+  (121.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1592
+  (0.2ms) SELECT version FROM "schema_migrations"
1593
+  (110.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
1594
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1595
+  (0.2ms) begin transaction
1596
+ -----------------------------------------------
1597
+ ActsAsIntervalTest: test_intersecting_intervals
1598
+ -----------------------------------------------
1599
+  (0.1ms) SAVEPOINT active_record_1
1600
+ SQL (0.4ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 18:23:55.953752"], ["ends_at", "2015-02-28 18:23:55.954049"], ["created_at", "2015-02-27 18:23:55.965257"], ["updated_at", "2015-02-27 18:23:55.965257"]]
1601
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1602
+  (0.2ms) SAVEPOINT active_record_1
1603
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 18:23:55.970120"], ["ends_at", "2015-01-27 18:23:55.970260"], ["created_at", "2015-02-27 18:23:55.971249"], ["updated_at", "2015-02-27 18:23:55.971249"]]
1604
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1605
+  (0.0ms) SAVEPOINT active_record_1
1606
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 18:23:55.972790"], ["ends_at", "2017-02-27 18:23:55.972899"], ["created_at", "2015-02-27 18:23:55.973564"], ["updated_at", "2015-02-27 18:23:55.973564"]]
1607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1608
+  (0.0ms) SAVEPOINT active_record_1
1609
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 18:23:55.974464"], ["ends_at", "2015-03-27 18:23:55.974526"], ["created_at", "2015-02-27 18:23:55.974868"], ["updated_at", "2015-02-27 18:23:55.974868"]]
1610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1611
+  (0.1ms) rollback transaction
1612
+  (0.0ms) begin transaction
1613
+ ----------------------------------------
1614
+ ActsAsIntervalTest: test_intervals_after
1615
+ ----------------------------------------
1616
+  (0.0ms) SAVEPOINT active_record_1
1617
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 18:23:55.976404"], ["ends_at", "2015-02-20 18:23:55.976465"], ["created_at", "2015-02-27 18:23:55.977136"], ["updated_at", "2015-02-27 18:23:55.977136"]]
1618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1619
+  (0.0ms) SAVEPOINT active_record_1
1620
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 18:23:55.978261"], ["ends_at", "2014-02-27 18:23:55.978316"], ["created_at", "2015-02-27 18:23:55.978688"], ["updated_at", "2015-02-27 18:23:55.978688"]]
1621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1622
+  (0.0ms) SAVEPOINT active_record_1
1623
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 18:23:55.979462"], ["ends_at", "2016-02-27 18:23:55.979508"], ["created_at", "2015-02-27 18:23:55.979891"], ["updated_at", "2015-02-27 18:23:55.979891"]]
1624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1625
+  (0.0ms) SAVEPOINT active_record_1
1626
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 18:23:55.980567"], ["ends_at", "2016-02-27 18:23:55.980612"], ["created_at", "2015-02-27 18:23:55.980922"], ["updated_at", "2015-02-27 18:23:55.980922"]]
1627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1628
+  (0.0ms) SAVEPOINT active_record_1
1629
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 18:23:55.981594"], ["ends_at", "2015-02-27 17:23:55.981636"], ["created_at", "2015-02-27 18:23:55.981927"], ["updated_at", "2015-02-27 18:23:55.981927"]]
1630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1631
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 17:23:55.981636')
1632
+  (0.1ms) rollback transaction
1633
+  (0.0ms) begin transaction
1634
+ -----------------------------------------
1635
+ ActsAsIntervalTest: test_intervals_before
1636
+ -----------------------------------------
1637
+  (0.0ms) SAVEPOINT active_record_1
1638
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 18:23:55.983621"], ["ends_at", "2015-02-20 18:23:55.983670"], ["created_at", "2015-02-27 18:23:55.984066"], ["updated_at", "2015-02-27 18:23:55.984066"]]
1639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1640
+  (0.0ms) SAVEPOINT active_record_1
1641
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 18:23:55.984944"], ["ends_at", "2014-02-27 18:23:55.985018"], ["created_at", "2015-02-27 18:23:55.985410"], ["updated_at", "2015-02-27 18:23:55.985410"]]
1642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1643
+  (0.0ms) SAVEPOINT active_record_1
1644
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 18:23:55.986051"], ["ends_at", "2016-02-27 18:23:55.986096"], ["created_at", "2015-02-27 18:23:55.986508"], ["updated_at", "2015-02-27 18:23:55.986508"]]
1645
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1646
+  (0.0ms) SAVEPOINT active_record_1
1647
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 18:23:55.995667"], ["ends_at", "2016-02-27 18:23:55.995741"], ["created_at", "2015-02-27 18:23:55.996128"], ["updated_at", "2015-02-27 18:23:55.996128"]]
1648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1649
+  (0.0ms) SAVEPOINT active_record_1
1650
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 18:23:55.996788"], ["ends_at", "2015-02-27 17:23:55.996832"], ["created_at", "2015-02-27 18:23:55.997123"], ["updated_at", "2015-02-27 18:23:55.997123"]]
1651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1652
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 18:23:55.996788')
1653
+  (0.1ms) rollback transaction
1654
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1655
+  (89.6ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
1656
+  (76.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1657
+  (0.4ms) select sqlite_version(*)
1658
+  (97.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1659
+  (0.3ms) SELECT version FROM "schema_migrations"
1660
+  (99.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
1661
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1662
+  (0.2ms) begin transaction
1663
+ -----------------------------------------------
1664
+ ActsAsIntervalTest: test_intersecting_intervals
1665
+ -----------------------------------------------
1666
+  (0.2ms) SAVEPOINT active_record_1
1667
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:41:59.166370"], ["ends_at", "2015-02-28 19:41:59.166736"], ["created_at", "2015-02-27 19:41:59.179833"], ["updated_at", "2015-02-27 19:41:59.179833"]]
1668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1669
+  (0.1ms) SAVEPOINT active_record_1
1670
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:41:59.186375"], ["ends_at", "2015-01-27 19:41:59.186693"], ["created_at", "2015-02-27 19:41:59.189233"], ["updated_at", "2015-02-27 19:41:59.189233"]]
1671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1672
+  (0.1ms) SAVEPOINT active_record_1
1673
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:41:59.195255"], ["ends_at", "2017-02-27 19:41:59.195501"], ["created_at", "2015-02-27 19:41:59.197754"], ["updated_at", "2015-02-27 19:41:59.197754"]]
1674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1675
+  (0.1ms) SAVEPOINT active_record_1
1676
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:41:59.202674"], ["ends_at", "2015-03-27 19:41:59.202906"], ["created_at", "2015-02-27 19:41:59.205393"], ["updated_at", "2015-02-27 19:41:59.205393"]]
1677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1678
+  (0.2ms) rollback transaction
1679
+  (0.1ms) begin transaction
1680
+ ----------------------------------------
1681
+ ActsAsIntervalTest: test_intervals_after
1682
+ ----------------------------------------
1683
+  (0.1ms) SAVEPOINT active_record_1
1684
+ SQL (0.4ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:41:59.211759"], ["ends_at", "2015-02-20 19:41:59.211989"], ["created_at", "2015-02-27 19:41:59.214196"], ["updated_at", "2015-02-27 19:41:59.214196"]]
1685
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1686
+  (0.1ms) SAVEPOINT active_record_1
1687
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:41:59.222125"], ["ends_at", "2014-02-27 19:41:59.222404"], ["created_at", "2015-02-27 19:41:59.224879"], ["updated_at", "2015-02-27 19:41:59.224879"]]
1688
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1689
+  (0.1ms) SAVEPOINT active_record_1
1690
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:41:59.229606"], ["ends_at", "2016-02-27 19:41:59.229831"], ["created_at", "2015-02-27 19:41:59.232069"], ["updated_at", "2015-02-27 19:41:59.232069"]]
1691
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1692
+  (0.2ms) SAVEPOINT active_record_1
1693
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:41:59.237215"], ["ends_at", "2016-02-27 19:41:59.237636"], ["created_at", "2015-02-27 19:41:59.241525"], ["updated_at", "2015-02-27 19:41:59.241525"]]
1694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1695
+  (0.1ms) SAVEPOINT active_record_1
1696
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:41:59.246217"], ["ends_at", "2015-02-27 18:41:59.246453"], ["created_at", "2015-02-27 19:41:59.248517"], ["updated_at", "2015-02-27 19:41:59.248517"]]
1697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1698
+ Interval Load (0.4ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 18:41:59.246453')
1699
+  (0.3ms) rollback transaction
1700
+  (0.2ms) begin transaction
1701
+ -----------------------------------------
1702
+ ActsAsIntervalTest: test_intervals_before
1703
+ -----------------------------------------
1704
+  (0.1ms) SAVEPOINT active_record_1
1705
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:41:59.258239"], ["ends_at", "2015-02-20 19:41:59.258750"], ["created_at", "2015-02-27 19:41:59.261267"], ["updated_at", "2015-02-27 19:41:59.261267"]]
1706
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1707
+  (0.1ms) SAVEPOINT active_record_1
1708
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:41:59.266045"], ["ends_at", "2014-02-27 19:41:59.266291"], ["created_at", "2015-02-27 19:41:59.268569"], ["updated_at", "2015-02-27 19:41:59.268569"]]
1709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1710
+  (0.1ms) SAVEPOINT active_record_1
1711
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:41:59.273297"], ["ends_at", "2016-02-27 19:41:59.273542"], ["created_at", "2015-02-27 19:41:59.275796"], ["updated_at", "2015-02-27 19:41:59.275796"]]
1712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1713
+  (0.1ms) SAVEPOINT active_record_1
1714
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:41:59.280299"], ["ends_at", "2016-02-27 19:41:59.280534"], ["created_at", "2015-02-27 19:41:59.282828"], ["updated_at", "2015-02-27 19:41:59.282828"]]
1715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1716
+  (0.1ms) SAVEPOINT active_record_1
1717
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:41:59.293783"], ["ends_at", "2015-02-27 18:41:59.294052"], ["created_at", "2015-02-27 19:41:59.296141"], ["updated_at", "2015-02-27 19:41:59.296141"]]
1718
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1719
+ Interval Load (0.2ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 19:41:59.293783')
1720
+  (0.3ms) rollback transaction
1721
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1722
+  (108.8ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
1723
+  (102.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1724
+  (0.5ms) select sqlite_version(*)
1725
+  (99.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1726
+  (0.4ms) SELECT version FROM "schema_migrations"
1727
+  (109.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
1728
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1729
+  (0.3ms) begin transaction
1730
+ -----------------------------------------------
1731
+ ActsAsIntervalTest: test_intersecting_intervals
1732
+ -----------------------------------------------
1733
+  (0.2ms) SAVEPOINT active_record_1
1734
+ SQL (0.4ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:42:24.016248"], ["ends_at", "2015-02-28 19:42:24.016886"], ["created_at", "2015-02-27 19:42:24.037254"], ["updated_at", "2015-02-27 19:42:24.037254"]]
1735
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1736
+  (0.2ms) SAVEPOINT active_record_1
1737
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:42:24.045938"], ["ends_at", "2015-01-27 19:42:24.046276"], ["created_at", "2015-02-27 19:42:24.049280"], ["updated_at", "2015-02-27 19:42:24.049280"]]
1738
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1739
+  (0.1ms) SAVEPOINT active_record_1
1740
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:42:24.055280"], ["ends_at", "2017-02-27 19:42:24.055575"], ["created_at", "2015-02-27 19:42:24.058485"], ["updated_at", "2015-02-27 19:42:24.058485"]]
1741
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1742
+  (0.2ms) SAVEPOINT active_record_1
1743
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:42:24.064149"], ["ends_at", "2015-03-27 19:42:24.064450"], ["created_at", "2015-02-27 19:42:24.067278"], ["updated_at", "2015-02-27 19:42:24.067278"]]
1744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1745
+  (0.2ms) rollback transaction
1746
+  (0.1ms) begin transaction
1747
+ ----------------------------------------
1748
+ ActsAsIntervalTest: test_intervals_after
1749
+ ----------------------------------------
1750
+  (0.1ms) SAVEPOINT active_record_1
1751
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:42:24.074702"], ["ends_at", "2015-02-20 19:42:24.074999"], ["created_at", "2015-02-27 19:42:24.077702"], ["updated_at", "2015-02-27 19:42:24.077702"]]
1752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1753
+  (0.1ms) SAVEPOINT active_record_1
1754
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:42:24.082972"], ["ends_at", "2014-02-27 19:42:24.083245"], ["created_at", "2015-02-27 19:42:24.085797"], ["updated_at", "2015-02-27 19:42:24.085797"]]
1755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1756
+  (0.1ms) SAVEPOINT active_record_1
1757
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:42:24.091003"], ["ends_at", "2016-02-27 19:42:24.091269"], ["created_at", "2015-02-27 19:42:24.093733"], ["updated_at", "2015-02-27 19:42:24.093733"]]
1758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1759
+  (0.1ms) SAVEPOINT active_record_1
1760
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:42:24.098725"], ["ends_at", "2016-02-27 19:42:24.098989"], ["created_at", "2015-02-27 19:42:24.101718"], ["updated_at", "2015-02-27 19:42:24.101718"]]
1761
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1762
+  (0.1ms) SAVEPOINT active_record_1
1763
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:42:24.106893"], ["ends_at", "2015-02-27 18:42:24.107134"], ["created_at", "2015-02-27 19:42:24.109420"], ["updated_at", "2015-02-27 19:42:24.109420"]]
1764
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1765
+ Interval Load (0.2ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 18:42:24.107134')
1766
+  (0.2ms) rollback transaction
1767
+  (0.1ms) begin transaction
1768
+ -----------------------------------------
1769
+ ActsAsIntervalTest: test_intervals_before
1770
+ -----------------------------------------
1771
+  (0.1ms) SAVEPOINT active_record_1
1772
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:42:24.118136"], ["ends_at", "2015-02-20 19:42:24.118377"], ["created_at", "2015-02-27 19:42:24.120712"], ["updated_at", "2015-02-27 19:42:24.120712"]]
1773
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1774
+  (0.1ms) SAVEPOINT active_record_1
1775
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:42:24.125535"], ["ends_at", "2014-02-27 19:42:24.125766"], ["created_at", "2015-02-27 19:42:24.128067"], ["updated_at", "2015-02-27 19:42:24.128067"]]
1776
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1777
+  (0.1ms) SAVEPOINT active_record_1
1778
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:42:24.132863"], ["ends_at", "2016-02-27 19:42:24.133119"], ["created_at", "2015-02-27 19:42:24.135418"], ["updated_at", "2015-02-27 19:42:24.135418"]]
1779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1780
+  (0.1ms) SAVEPOINT active_record_1
1781
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:42:24.140136"], ["ends_at", "2016-02-27 19:42:24.140388"], ["created_at", "2015-02-27 19:42:24.142679"], ["updated_at", "2015-02-27 19:42:24.142679"]]
1782
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1783
+  (0.1ms) SAVEPOINT active_record_1
1784
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:42:24.153576"], ["ends_at", "2015-02-27 18:42:24.153855"], ["created_at", "2015-02-27 19:42:24.155953"], ["updated_at", "2015-02-27 19:42:24.155953"]]
1785
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1786
+ Interval Load (0.2ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 19:42:24.153576')
1787
+  (0.3ms) rollback transaction
1788
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1789
+  (131.5ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
1790
+  (98.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1791
+  (0.2ms) select sqlite_version(*)
1792
+  (97.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1793
+  (0.5ms) SELECT version FROM "schema_migrations"
1794
+  (100.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
1795
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1796
+  (0.2ms) begin transaction
1797
+ -----------------------------------------------
1798
+ ActsAsIntervalTest: test_intersecting_intervals
1799
+ -----------------------------------------------
1800
+  (0.2ms) SAVEPOINT active_record_1
1801
+ SQL (0.6ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:43:25.431114"], ["ends_at", "2015-02-28 19:43:25.431609"], ["created_at", "2015-02-27 19:43:25.450589"], ["updated_at", "2015-02-27 19:43:25.450589"]]
1802
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1803
+  (0.2ms) SAVEPOINT active_record_1
1804
+ SQL (0.4ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:43:25.459880"], ["ends_at", "2015-01-27 19:43:25.460282"], ["created_at", "2015-02-27 19:43:25.463496"], ["updated_at", "2015-02-27 19:43:25.463496"]]
1805
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1806
+  (0.2ms) SAVEPOINT active_record_1
1807
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:43:25.469646"], ["ends_at", "2017-02-27 19:43:25.469942"], ["created_at", "2015-02-27 19:43:25.472865"], ["updated_at", "2015-02-27 19:43:25.472865"]]
1808
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1809
+  (0.1ms) SAVEPOINT active_record_1
1810
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:43:25.478493"], ["ends_at", "2015-03-27 19:43:25.478812"], ["created_at", "2015-02-27 19:43:25.481518"], ["updated_at", "2015-02-27 19:43:25.481518"]]
1811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1812
+  (0.2ms) rollback transaction
1813
+  (0.1ms) begin transaction
1814
+ ----------------------------------------
1815
+ ActsAsIntervalTest: test_intervals_after
1816
+ ----------------------------------------
1817
+  (0.1ms) SAVEPOINT active_record_1
1818
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:43:25.488906"], ["ends_at", "2015-02-20 19:43:25.489201"], ["created_at", "2015-02-27 19:43:25.491837"], ["updated_at", "2015-02-27 19:43:25.491837"]]
1819
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1820
+  (0.1ms) SAVEPOINT active_record_1
1821
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:43:25.497145"], ["ends_at", "2014-02-27 19:43:25.497397"], ["created_at", "2015-02-27 19:43:25.499895"], ["updated_at", "2015-02-27 19:43:25.499895"]]
1822
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1823
+  (0.1ms) SAVEPOINT active_record_1
1824
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:43:25.505100"], ["ends_at", "2016-02-27 19:43:25.505375"], ["created_at", "2015-02-27 19:43:25.507865"], ["updated_at", "2015-02-27 19:43:25.507865"]]
1825
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1826
+  (0.1ms) SAVEPOINT active_record_1
1827
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:43:25.512710"], ["ends_at", "2016-02-27 19:43:25.512966"], ["created_at", "2015-02-27 19:43:25.515370"], ["updated_at", "2015-02-27 19:43:25.515370"]]
1828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1829
+  (0.1ms) SAVEPOINT active_record_1
1830
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:43:25.520300"], ["ends_at", "2015-02-27 18:43:25.520524"], ["created_at", "2015-02-27 19:43:25.522687"], ["updated_at", "2015-02-27 19:43:25.522687"]]
1831
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1832
+  (0.2ms) rollback transaction
1833
+  (0.1ms) begin transaction
1834
+ -----------------------------------------
1835
+ ActsAsIntervalTest: test_intervals_before
1836
+ -----------------------------------------
1837
+  (0.1ms) SAVEPOINT active_record_1
1838
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:43:25.529146"], ["ends_at", "2015-02-20 19:43:25.529410"], ["created_at", "2015-02-27 19:43:25.531765"], ["updated_at", "2015-02-27 19:43:25.531765"]]
1839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1840
+  (0.1ms) SAVEPOINT active_record_1
1841
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:43:25.536433"], ["ends_at", "2014-02-27 19:43:25.536675"], ["created_at", "2015-02-27 19:43:25.538995"], ["updated_at", "2015-02-27 19:43:25.538995"]]
1842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1843
+  (0.1ms) SAVEPOINT active_record_1
1844
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:43:25.543712"], ["ends_at", "2016-02-27 19:43:25.543953"], ["created_at", "2015-02-27 19:43:25.546280"], ["updated_at", "2015-02-27 19:43:25.546280"]]
1845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1846
+  (0.1ms) SAVEPOINT active_record_1
1847
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:43:25.550840"], ["ends_at", "2016-02-27 19:43:25.551062"], ["created_at", "2015-02-27 19:43:25.553255"], ["updated_at", "2015-02-27 19:43:25.553255"]]
1848
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1849
+  (0.2ms) SAVEPOINT active_record_1
1850
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:43:25.564034"], ["ends_at", "2015-02-27 18:43:25.564326"], ["created_at", "2015-02-27 19:43:25.566874"], ["updated_at", "2015-02-27 19:43:25.566874"]]
1851
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1852
+  (0.2ms) rollback transaction
1853
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1854
+  (109.2ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
1855
+  (89.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1856
+  (0.1ms) select sqlite_version(*)
1857
+  (66.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1858
+  (0.2ms) SELECT version FROM "schema_migrations"
1859
+  (66.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
1860
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1861
+  (0.2ms) begin transaction
1862
+ -----------------------------------------------
1863
+ ActsAsIntervalTest: test_future_interval_method
1864
+ -----------------------------------------------
1865
+  (0.1ms) rollback transaction
1866
+  (0.1ms) begin transaction
1867
+ -----------------------------------------------
1868
+ ActsAsIntervalTest: test_intersecting_intervals
1869
+ -----------------------------------------------
1870
+  (0.1ms) SAVEPOINT active_record_1
1871
+ SQL (0.8ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:45:54.390675"], ["ends_at", "2015-02-28 19:45:54.390899"], ["created_at", "2015-02-27 19:45:54.395088"], ["updated_at", "2015-02-27 19:45:54.395088"]]
1872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1873
+  (0.0ms) SAVEPOINT active_record_1
1874
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:45:54.399075"], ["ends_at", "2015-01-27 19:45:54.399199"], ["created_at", "2015-02-27 19:45:54.400373"], ["updated_at", "2015-02-27 19:45:54.400373"]]
1875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1876
+  (0.0ms) SAVEPOINT active_record_1
1877
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:45:54.402098"], ["ends_at", "2017-02-27 19:45:54.402760"], ["created_at", "2015-02-27 19:45:54.403195"], ["updated_at", "2015-02-27 19:45:54.403195"]]
1878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1879
+  (0.0ms) SAVEPOINT active_record_1
1880
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:45:54.404505"], ["ends_at", "2015-03-27 19:45:54.404554"], ["created_at", "2015-02-27 19:45:54.405046"], ["updated_at", "2015-02-27 19:45:54.405046"]]
1881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1882
+  (0.1ms) rollback transaction
1883
+  (0.0ms) begin transaction
1884
+ ----------------------------------------
1885
+ ActsAsIntervalTest: test_intervals_after
1886
+ ----------------------------------------
1887
+  (0.0ms) SAVEPOINT active_record_1
1888
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:45:54.406369"], ["ends_at", "2015-02-20 19:45:54.406435"], ["created_at", "2015-02-27 19:45:54.407055"], ["updated_at", "2015-02-27 19:45:54.407055"]]
1889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1890
+  (0.0ms) SAVEPOINT active_record_1
1891
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:45:54.408411"], ["ends_at", "2014-02-27 19:45:54.408470"], ["created_at", "2015-02-27 19:45:54.409025"], ["updated_at", "2015-02-27 19:45:54.409025"]]
1892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1893
+  (0.0ms) SAVEPOINT active_record_1
1894
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:45:54.409852"], ["ends_at", "2016-02-27 19:45:54.410056"], ["created_at", "2015-02-27 19:45:54.410376"], ["updated_at", "2015-02-27 19:45:54.410376"]]
1895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1896
+  (0.0ms) SAVEPOINT active_record_1
1897
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:45:54.411183"], ["ends_at", "2016-02-27 19:45:54.411394"], ["created_at", "2015-02-27 19:45:54.411704"], ["updated_at", "2015-02-27 19:45:54.411704"]]
1898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1899
+  (0.0ms) SAVEPOINT active_record_1
1900
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:45:54.412484"], ["ends_at", "2015-02-27 18:45:54.412527"], ["created_at", "2015-02-27 19:45:54.412991"], ["updated_at", "2015-02-27 19:45:54.412991"]]
1901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1902
+  (0.1ms) rollback transaction
1903
+  (0.0ms) begin transaction
1904
+ -----------------------------------------
1905
+ ActsAsIntervalTest: test_intervals_before
1906
+ -----------------------------------------
1907
+  (0.0ms) SAVEPOINT active_record_1
1908
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:45:54.414515"], ["ends_at", "2015-02-20 19:45:54.414562"], ["created_at", "2015-02-27 19:45:54.414886"], ["updated_at", "2015-02-27 19:45:54.414886"]]
1909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1910
+  (0.0ms) SAVEPOINT active_record_1
1911
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:45:54.415843"], ["ends_at", "2014-02-27 19:45:54.415890"], ["created_at", "2015-02-27 19:45:54.416200"], ["updated_at", "2015-02-27 19:45:54.416200"]]
1912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1913
+  (0.0ms) SAVEPOINT active_record_1
1914
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:45:54.417141"], ["ends_at", "2016-02-27 19:45:54.417187"], ["created_at", "2015-02-27 19:45:54.417500"], ["updated_at", "2015-02-27 19:45:54.417500"]]
1915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1916
+  (0.0ms) SAVEPOINT active_record_1
1917
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:45:54.418459"], ["ends_at", "2016-02-27 19:45:54.418516"], ["created_at", "2015-02-27 19:45:54.418823"], ["updated_at", "2015-02-27 19:45:54.418823"]]
1918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1919
+  (0.0ms) SAVEPOINT active_record_1
1920
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:45:54.419839"], ["ends_at", "2015-02-27 18:45:54.419884"], ["created_at", "2015-02-27 19:45:54.420262"], ["updated_at", "2015-02-27 19:45:54.420262"]]
1921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1922
+  (0.1ms) rollback transaction
1923
+  (0.0ms) begin transaction
1924
+ ----------------------------------------------------
1925
+ ActsAsIntervalTest: test_overlapping_interval_method
1926
+ ----------------------------------------------------
1927
+  (0.0ms) rollback transaction
1928
+  (0.0ms) begin transaction
1929
+ ---------------------------------------------
1930
+ ActsAsIntervalTest: test_past_interval_method
1931
+ ---------------------------------------------
1932
+  (0.0ms) rollback transaction
1933
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1934
+  (87.3ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
1935
+  (100.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
1936
+  (0.2ms) select sqlite_version(*)
1937
+  (99.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1938
+  (0.1ms) SELECT version FROM "schema_migrations"
1939
+  (78.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
1940
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1941
+  (0.2ms) begin transaction
1942
+ -----------------------------------------------
1943
+ ActsAsIntervalTest: test_future_interval_method
1944
+ -----------------------------------------------
1945
+  (0.1ms) rollback transaction
1946
+  (0.1ms) begin transaction
1947
+ -----------------------------------------------
1948
+ ActsAsIntervalTest: test_intersecting_intervals
1949
+ -----------------------------------------------
1950
+  (0.1ms) SAVEPOINT active_record_1
1951
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:46:42.257144"], ["ends_at", "2015-02-28 19:46:42.257376"], ["created_at", "2015-02-27 19:46:42.261531"], ["updated_at", "2015-02-27 19:46:42.261531"]]
1952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1953
+  (0.0ms) SAVEPOINT active_record_1
1954
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:46:42.267347"], ["ends_at", "2015-01-27 19:46:42.267431"], ["created_at", "2015-02-27 19:46:42.268501"], ["updated_at", "2015-02-27 19:46:42.268501"]]
1955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1956
+  (0.0ms) SAVEPOINT active_record_1
1957
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:46:42.269602"], ["ends_at", "2017-02-27 19:46:42.269817"], ["created_at", "2015-02-27 19:46:42.270176"], ["updated_at", "2015-02-27 19:46:42.270176"]]
1958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1959
+  (0.0ms) SAVEPOINT active_record_1
1960
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:46:42.271009"], ["ends_at", "2015-03-27 19:46:42.271218"], ["created_at", "2015-02-27 19:46:42.271551"], ["updated_at", "2015-02-27 19:46:42.271551"]]
1961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1962
+  (0.1ms) rollback transaction
1963
+  (0.0ms) begin transaction
1964
+ ----------------------------------------
1965
+ ActsAsIntervalTest: test_intervals_after
1966
+ ----------------------------------------
1967
+  (0.0ms) SAVEPOINT active_record_1
1968
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:46:42.272996"], ["ends_at", "2015-02-20 19:46:42.273046"], ["created_at", "2015-02-27 19:46:42.273564"], ["updated_at", "2015-02-27 19:46:42.273564"]]
1969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1970
+  (0.0ms) SAVEPOINT active_record_1
1971
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:46:42.274386"], ["ends_at", "2014-02-27 19:46:42.274454"], ["created_at", "2015-02-27 19:46:42.274930"], ["updated_at", "2015-02-27 19:46:42.274930"]]
1972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1973
+  (0.0ms) SAVEPOINT active_record_1
1974
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:46:42.275714"], ["ends_at", "2016-02-27 19:46:42.275760"], ["created_at", "2015-02-27 19:46:42.276226"], ["updated_at", "2015-02-27 19:46:42.276226"]]
1975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1976
+  (0.0ms) SAVEPOINT active_record_1
1977
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:46:42.277031"], ["ends_at", "2016-02-27 19:46:42.277076"], ["created_at", "2015-02-27 19:46:42.277553"], ["updated_at", "2015-02-27 19:46:42.277553"]]
1978
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1979
+  (0.0ms) SAVEPOINT active_record_1
1980
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:46:42.278655"], ["ends_at", "2015-02-27 18:46:42.278701"], ["created_at", "2015-02-27 19:46:42.278996"], ["updated_at", "2015-02-27 19:46:42.278996"]]
1981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1982
+  (0.1ms) rollback transaction
1983
+  (0.0ms) begin transaction
1984
+ -----------------------------------------
1985
+ ActsAsIntervalTest: test_intervals_before
1986
+ -----------------------------------------
1987
+  (0.0ms) SAVEPOINT active_record_1
1988
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:46:42.280334"], ["ends_at", "2015-02-20 19:46:42.280382"], ["created_at", "2015-02-27 19:46:42.280702"], ["updated_at", "2015-02-27 19:46:42.280702"]]
1989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1990
+  (0.0ms) SAVEPOINT active_record_1
1991
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:46:42.281518"], ["ends_at", "2014-02-27 19:46:42.281564"], ["created_at", "2015-02-27 19:46:42.282034"], ["updated_at", "2015-02-27 19:46:42.282034"]]
1992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1993
+  (0.0ms) SAVEPOINT active_record_1
1994
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:46:42.282955"], ["ends_at", "2016-02-27 19:46:42.283166"], ["created_at", "2015-02-27 19:46:42.283488"], ["updated_at", "2015-02-27 19:46:42.283488"]]
1995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1996
+  (0.0ms) SAVEPOINT active_record_1
1997
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:46:42.284251"], ["ends_at", "2016-02-27 19:46:42.284297"], ["created_at", "2015-02-27 19:46:42.284757"], ["updated_at", "2015-02-27 19:46:42.284757"]]
1998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1999
+  (0.0ms) SAVEPOINT active_record_1
2000
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:46:42.285561"], ["ends_at", "2015-02-27 18:46:42.285605"], ["created_at", "2015-02-27 19:46:42.286064"], ["updated_at", "2015-02-27 19:46:42.286064"]]
2001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2002
+  (0.1ms) rollback transaction
2003
+  (0.0ms) begin transaction
2004
+ ----------------------------------------------------
2005
+ ActsAsIntervalTest: test_overlapping_interval_method
2006
+ ----------------------------------------------------
2007
+  (0.0ms) rollback transaction
2008
+  (0.0ms) begin transaction
2009
+ ---------------------------------------------
2010
+ ActsAsIntervalTest: test_past_interval_method
2011
+ ---------------------------------------------
2012
+  (0.0ms) rollback transaction
2013
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2014
+  (113.2ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2015
+  (68.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2016
+  (0.1ms) select sqlite_version(*)
2017
+  (113.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2018
+  (0.1ms) SELECT version FROM "schema_migrations"
2019
+  (111.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2020
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2021
+  (0.2ms) begin transaction
2022
+ -----------------------------------------------
2023
+ ActsAsIntervalTest: test_future_interval_method
2024
+ -----------------------------------------------
2025
+  (0.1ms) rollback transaction
2026
+  (0.1ms) begin transaction
2027
+ -----------------------------------------------
2028
+ ActsAsIntervalTest: test_intersecting_intervals
2029
+ -----------------------------------------------
2030
+  (0.1ms) SAVEPOINT active_record_1
2031
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:48:12.662022"], ["ends_at", "2015-02-28 19:48:12.662250"], ["created_at", "2015-02-27 19:48:12.666974"], ["updated_at", "2015-02-27 19:48:12.666974"]]
2032
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2033
+  (0.0ms) SAVEPOINT active_record_1
2034
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:48:12.672534"], ["ends_at", "2015-01-27 19:48:12.672626"], ["created_at", "2015-02-27 19:48:12.673683"], ["updated_at", "2015-02-27 19:48:12.673683"]]
2035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2036
+  (0.0ms) SAVEPOINT active_record_1
2037
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:48:12.674988"], ["ends_at", "2017-02-27 19:48:12.675061"], ["created_at", "2015-02-27 19:48:12.675731"], ["updated_at", "2015-02-27 19:48:12.675731"]]
2038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2039
+  (0.0ms) SAVEPOINT active_record_1
2040
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:48:12.676834"], ["ends_at", "2015-03-27 19:48:12.676900"], ["created_at", "2015-02-27 19:48:12.677568"], ["updated_at", "2015-02-27 19:48:12.677568"]]
2041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2042
+  (0.1ms) rollback transaction
2043
+  (0.0ms) begin transaction
2044
+ ----------------------------------------
2045
+ ActsAsIntervalTest: test_intervals_after
2046
+ ----------------------------------------
2047
+  (0.0ms) SAVEPOINT active_record_1
2048
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:48:12.679403"], ["ends_at", "2015-02-20 19:48:12.679461"], ["created_at", "2015-02-27 19:48:12.679825"], ["updated_at", "2015-02-27 19:48:12.679825"]]
2049
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2050
+  (0.0ms) SAVEPOINT active_record_1
2051
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:48:12.681226"], ["ends_at", "2014-02-27 19:48:12.681296"], ["created_at", "2015-02-27 19:48:12.681808"], ["updated_at", "2015-02-27 19:48:12.681808"]]
2052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2053
+  (0.0ms) SAVEPOINT active_record_1
2054
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:48:12.683137"], ["ends_at", "2016-02-27 19:48:12.683195"], ["created_at", "2015-02-27 19:48:12.683590"], ["updated_at", "2015-02-27 19:48:12.683590"]]
2055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2056
+  (0.0ms) SAVEPOINT active_record_1
2057
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:48:12.684756"], ["ends_at", "2016-02-27 19:48:12.684814"], ["created_at", "2015-02-27 19:48:12.685418"], ["updated_at", "2015-02-27 19:48:12.685418"]]
2058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2059
+  (0.0ms) SAVEPOINT active_record_1
2060
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:48:12.686600"], ["ends_at", "2015-02-27 18:48:12.686655"], ["created_at", "2015-02-27 19:48:12.687020"], ["updated_at", "2015-02-27 19:48:12.687020"]]
2061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2062
+  (0.1ms) rollback transaction
2063
+  (0.0ms) begin transaction
2064
+ -----------------------------------------
2065
+ ActsAsIntervalTest: test_intervals_before
2066
+ -----------------------------------------
2067
+  (0.0ms) SAVEPOINT active_record_1
2068
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:48:12.688626"], ["ends_at", "2015-02-20 19:48:12.688685"], ["created_at", "2015-02-27 19:48:12.689273"], ["updated_at", "2015-02-27 19:48:12.689273"]]
2069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2070
+  (0.0ms) SAVEPOINT active_record_1
2071
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:48:12.690274"], ["ends_at", "2014-02-27 19:48:12.690332"], ["created_at", "2015-02-27 19:48:12.690917"], ["updated_at", "2015-02-27 19:48:12.690917"]]
2072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2073
+  (0.0ms) SAVEPOINT active_record_1
2074
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:48:12.692073"], ["ends_at", "2016-02-27 19:48:12.692123"], ["created_at", "2015-02-27 19:48:12.692623"], ["updated_at", "2015-02-27 19:48:12.692623"]]
2075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2076
+  (0.0ms) SAVEPOINT active_record_1
2077
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:48:12.693562"], ["ends_at", "2016-02-27 19:48:12.693620"], ["created_at", "2015-02-27 19:48:12.694190"], ["updated_at", "2015-02-27 19:48:12.694190"]]
2078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2079
+  (0.0ms) SAVEPOINT active_record_1
2080
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:48:12.695138"], ["ends_at", "2015-02-27 18:48:12.695190"], ["created_at", "2015-02-27 19:48:12.695721"], ["updated_at", "2015-02-27 19:48:12.695721"]]
2081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2082
+  (0.1ms) rollback transaction
2083
+  (0.0ms) begin transaction
2084
+ ----------------------------------------------------
2085
+ ActsAsIntervalTest: test_overlapping_interval_method
2086
+ ----------------------------------------------------
2087
+  (0.0ms) rollback transaction
2088
+  (0.0ms) begin transaction
2089
+ ---------------------------------------------
2090
+ ActsAsIntervalTest: test_past_interval_method
2091
+ ---------------------------------------------
2092
+  (0.0ms) rollback transaction
2093
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2094
+  (120.4ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2095
+  (192.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2096
+  (0.1ms) select sqlite_version(*)
2097
+  (102.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2098
+  (0.1ms) SELECT version FROM "schema_migrations"
2099
+  (100.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2100
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2101
+  (0.1ms) begin transaction
2102
+ -----------------------------------------------
2103
+ ActsAsIntervalTest: test_future_interval_method
2104
+ -----------------------------------------------
2105
+  (0.1ms) rollback transaction
2106
+  (0.0ms) begin transaction
2107
+ -----------------------------------------------
2108
+ ActsAsIntervalTest: test_intersecting_intervals
2109
+ -----------------------------------------------
2110
+  (0.0ms) SAVEPOINT active_record_1
2111
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:48:44.471692"], ["ends_at", "2015-02-28 19:48:44.471839"], ["created_at", "2015-02-27 19:48:44.474883"], ["updated_at", "2015-02-27 19:48:44.474883"]]
2112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2113
+  (0.0ms) SAVEPOINT active_record_1
2114
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:48:44.478668"], ["ends_at", "2015-01-27 19:48:44.478740"], ["created_at", "2015-02-27 19:48:44.479407"], ["updated_at", "2015-02-27 19:48:44.479407"]]
2115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2116
+  (0.0ms) SAVEPOINT active_record_1
2117
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:48:44.480425"], ["ends_at", "2017-02-27 19:48:44.480508"], ["created_at", "2015-02-27 19:48:44.481311"], ["updated_at", "2015-02-27 19:48:44.481311"]]
2118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2119
+  (0.3ms) SAVEPOINT active_record_1
2120
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:48:44.482510"], ["ends_at", "2015-03-27 19:48:44.482588"], ["created_at", "2015-02-27 19:48:44.483284"], ["updated_at", "2015-02-27 19:48:44.483284"]]
2121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2122
+  (0.1ms) rollback transaction
2123
+  (0.0ms) begin transaction
2124
+ ----------------------------------------
2125
+ ActsAsIntervalTest: test_intervals_after
2126
+ ----------------------------------------
2127
+  (0.0ms) SAVEPOINT active_record_1
2128
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:48:44.484663"], ["ends_at", "2015-02-20 19:48:44.484716"], ["created_at", "2015-02-27 19:48:44.485233"], ["updated_at", "2015-02-27 19:48:44.485233"]]
2129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2130
+  (0.0ms) SAVEPOINT active_record_1
2131
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:48:44.486080"], ["ends_at", "2014-02-27 19:48:44.486126"], ["created_at", "2015-02-27 19:48:44.486631"], ["updated_at", "2015-02-27 19:48:44.486631"]]
2132
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2133
+  (0.0ms) SAVEPOINT active_record_1
2134
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:48:44.487614"], ["ends_at", "2016-02-27 19:48:44.487660"], ["created_at", "2015-02-27 19:48:44.487974"], ["updated_at", "2015-02-27 19:48:44.487974"]]
2135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2136
+  (0.0ms) SAVEPOINT active_record_1
2137
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:48:44.489036"], ["ends_at", "2016-02-27 19:48:44.489085"], ["created_at", "2015-02-27 19:48:44.490290"], ["updated_at", "2015-02-27 19:48:44.490290"]]
2138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2139
+  (0.0ms) SAVEPOINT active_record_1
2140
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:48:44.491157"], ["ends_at", "2015-02-27 18:48:44.491205"], ["created_at", "2015-02-27 19:48:44.491657"], ["updated_at", "2015-02-27 19:48:44.491657"]]
2141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2142
+  (0.1ms) rollback transaction
2143
+  (0.2ms) begin transaction
2144
+ -----------------------------------------
2145
+ ActsAsIntervalTest: test_intervals_before
2146
+ -----------------------------------------
2147
+  (0.0ms) SAVEPOINT active_record_1
2148
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:48:44.493051"], ["ends_at", "2015-02-20 19:48:44.493100"], ["created_at", "2015-02-27 19:48:44.493431"], ["updated_at", "2015-02-27 19:48:44.493431"]]
2149
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2150
+  (0.0ms) SAVEPOINT active_record_1
2151
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:48:44.494501"], ["ends_at", "2014-02-27 19:48:44.494547"], ["created_at", "2015-02-27 19:48:44.494858"], ["updated_at", "2015-02-27 19:48:44.494858"]]
2152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2153
+  (0.0ms) SAVEPOINT active_record_1
2154
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:48:44.495644"], ["ends_at", "2016-02-27 19:48:44.495841"], ["created_at", "2015-02-27 19:48:44.496154"], ["updated_at", "2015-02-27 19:48:44.496154"]]
2155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2156
+  (0.0ms) SAVEPOINT active_record_1
2157
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:48:44.496924"], ["ends_at", "2016-02-27 19:48:44.496968"], ["created_at", "2015-02-27 19:48:44.497456"], ["updated_at", "2015-02-27 19:48:44.497456"]]
2158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2159
+  (0.0ms) SAVEPOINT active_record_1
2160
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:48:44.498254"], ["ends_at", "2015-02-27 18:48:44.498296"], ["created_at", "2015-02-27 19:48:44.498616"], ["updated_at", "2015-02-27 19:48:44.498616"]]
2161
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2162
+  (0.1ms) rollback transaction
2163
+  (0.0ms) begin transaction
2164
+ ----------------------------------------------------
2165
+ ActsAsIntervalTest: test_overlapping_interval_method
2166
+ ----------------------------------------------------
2167
+  (0.0ms) rollback transaction
2168
+  (0.0ms) begin transaction
2169
+ ---------------------------------------------
2170
+ ActsAsIntervalTest: test_past_interval_method
2171
+ ---------------------------------------------
2172
+  (0.0ms) rollback transaction
2173
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2174
+  (98.6ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2175
+  (101.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2176
+  (0.1ms) select sqlite_version(*)
2177
+  (101.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2178
+  (0.3ms) SELECT version FROM "schema_migrations"
2179
+  (99.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2180
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2181
+  (0.1ms) begin transaction
2182
+ -----------------------------------------------
2183
+ ActsAsIntervalTest: test_future_interval_method
2184
+ -----------------------------------------------
2185
+  (0.3ms) rollback transaction
2186
+  (0.1ms) begin transaction
2187
+ -----------------------------------------------
2188
+ ActsAsIntervalTest: test_intersecting_intervals
2189
+ -----------------------------------------------
2190
+  (0.3ms) SAVEPOINT active_record_1
2191
+ SQL (0.8ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:49:21.264254"], ["ends_at", "2015-02-28 19:49:21.264568"], ["created_at", "2015-02-27 19:49:21.270614"], ["updated_at", "2015-02-27 19:49:21.270614"]]
2192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2193
+  (0.1ms) SAVEPOINT active_record_1
2194
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:49:21.282346"], ["ends_at", "2015-01-27 19:49:21.282645"], ["created_at", "2015-02-27 19:49:21.285147"], ["updated_at", "2015-02-27 19:49:21.285147"]]
2195
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2196
+  (0.1ms) SAVEPOINT active_record_1
2197
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:49:21.289854"], ["ends_at", "2017-02-27 19:49:21.290182"], ["created_at", "2015-02-27 19:49:21.292371"], ["updated_at", "2015-02-27 19:49:21.292371"]]
2198
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2199
+  (0.1ms) SAVEPOINT active_record_1
2200
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:49:21.296750"], ["ends_at", "2015-03-27 19:49:21.296967"], ["created_at", "2015-02-27 19:49:21.301142"], ["updated_at", "2015-02-27 19:49:21.301142"]]
2201
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2202
+  (0.2ms) rollback transaction
2203
+  (0.1ms) begin transaction
2204
+ ----------------------------------------
2205
+ ActsAsIntervalTest: test_intervals_after
2206
+ ----------------------------------------
2207
+  (0.1ms) SAVEPOINT active_record_1
2208
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:49:21.306635"], ["ends_at", "2015-02-20 19:49:21.306867"], ["created_at", "2015-02-27 19:49:21.308722"], ["updated_at", "2015-02-27 19:49:21.308722"]]
2209
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2210
+  (0.1ms) SAVEPOINT active_record_1
2211
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:49:21.312583"], ["ends_at", "2014-02-27 19:49:21.312789"], ["created_at", "2015-02-27 19:49:21.314603"], ["updated_at", "2015-02-27 19:49:21.314603"]]
2212
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2213
+  (0.1ms) SAVEPOINT active_record_1
2214
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:49:21.318635"], ["ends_at", "2016-02-27 19:49:21.318832"], ["created_at", "2015-02-27 19:49:21.320739"], ["updated_at", "2015-02-27 19:49:21.320739"]]
2215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2216
+  (0.1ms) SAVEPOINT active_record_1
2217
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:49:21.324841"], ["ends_at", "2016-02-27 19:49:21.325030"], ["created_at", "2015-02-27 19:49:21.327008"], ["updated_at", "2015-02-27 19:49:21.327008"]]
2218
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2219
+  (0.1ms) SAVEPOINT active_record_1
2220
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:49:21.330820"], ["ends_at", "2015-02-27 18:49:21.330990"], ["created_at", "2015-02-27 19:49:21.332698"], ["updated_at", "2015-02-27 19:49:21.332698"]]
2221
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2222
+  (0.2ms) rollback transaction
2223
+  (0.1ms) begin transaction
2224
+ -----------------------------------------
2225
+ ActsAsIntervalTest: test_intervals_before
2226
+ -----------------------------------------
2227
+  (0.2ms) SAVEPOINT active_record_1
2228
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:49:21.337976"], ["ends_at", "2015-02-20 19:49:21.338198"], ["created_at", "2015-02-27 19:49:21.340373"], ["updated_at", "2015-02-27 19:49:21.340373"]]
2229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2230
+  (0.1ms) SAVEPOINT active_record_1
2231
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:49:21.345849"], ["ends_at", "2014-02-27 19:49:21.346053"], ["created_at", "2015-02-27 19:49:21.347997"], ["updated_at", "2015-02-27 19:49:21.347997"]]
2232
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2233
+  (0.1ms) SAVEPOINT active_record_1
2234
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:49:21.351866"], ["ends_at", "2016-02-27 19:49:21.352065"], ["created_at", "2015-02-27 19:49:21.353904"], ["updated_at", "2015-02-27 19:49:21.353904"]]
2235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2236
+  (0.1ms) SAVEPOINT active_record_1
2237
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:49:21.358077"], ["ends_at", "2016-02-27 19:49:21.358270"], ["created_at", "2015-02-27 19:49:21.360205"], ["updated_at", "2015-02-27 19:49:21.360205"]]
2238
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2239
+  (0.1ms) SAVEPOINT active_record_1
2240
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:49:21.364042"], ["ends_at", "2015-02-27 18:49:21.364238"], ["created_at", "2015-02-27 19:49:21.365930"], ["updated_at", "2015-02-27 19:49:21.365930"]]
2241
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2242
+  (0.2ms) rollback transaction
2243
+  (0.1ms) begin transaction
2244
+ ----------------------------------------------------
2245
+ ActsAsIntervalTest: test_overlapping_interval_method
2246
+ ----------------------------------------------------
2247
+  (0.1ms) rollback transaction
2248
+  (0.1ms) begin transaction
2249
+ ---------------------------------------------
2250
+ ActsAsIntervalTest: test_past_interval_method
2251
+ ---------------------------------------------
2252
+  (0.1ms) rollback transaction
2253
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2254
+  (108.4ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2255
+  (95.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2256
+  (0.2ms) select sqlite_version(*)
2257
+  (99.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2258
+  (0.1ms) SELECT version FROM "schema_migrations"
2259
+  (103.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2260
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2261
+  (0.2ms) begin transaction
2262
+ -----------------------------------------------
2263
+ ActsAsIntervalTest: test_future_interval_method
2264
+ -----------------------------------------------
2265
+  (0.5ms) rollback transaction
2266
+  (0.2ms) begin transaction
2267
+ -----------------------------------------------
2268
+ ActsAsIntervalTest: test_intersecting_intervals
2269
+ -----------------------------------------------
2270
+  (0.2ms) SAVEPOINT active_record_1
2271
+ SQL (1.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:53:09.749739"], ["ends_at", "2015-02-28 19:53:09.750493"], ["created_at", "2015-02-27 19:53:09.760554"], ["updated_at", "2015-02-27 19:53:09.760554"]]
2272
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2273
+  (0.2ms) SAVEPOINT active_record_1
2274
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:53:09.778209"], ["ends_at", "2015-01-27 19:53:09.778641"], ["created_at", "2015-02-27 19:53:09.784441"], ["updated_at", "2015-02-27 19:53:09.784441"]]
2275
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2276
+  (0.2ms) SAVEPOINT active_record_1
2277
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:53:09.794745"], ["ends_at", "2017-02-27 19:53:09.795149"], ["created_at", "2015-02-27 19:53:09.798500"], ["updated_at", "2015-02-27 19:53:09.798500"]]
2278
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2279
+  (0.2ms) SAVEPOINT active_record_1
2280
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:53:09.805390"], ["ends_at", "2015-03-27 19:53:09.805733"], ["created_at", "2015-02-27 19:53:09.808844"], ["updated_at", "2015-02-27 19:53:09.808844"]]
2281
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2282
+  (0.3ms) rollback transaction
2283
+  (0.2ms) begin transaction
2284
+ ----------------------------------------
2285
+ ActsAsIntervalTest: test_intervals_after
2286
+ ----------------------------------------
2287
+  (0.2ms) SAVEPOINT active_record_1
2288
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:53:09.818573"], ["ends_at", "2015-02-20 19:53:09.818944"], ["created_at", "2015-02-27 19:53:09.822393"], ["updated_at", "2015-02-27 19:53:09.822393"]]
2289
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2290
+  (0.2ms) SAVEPOINT active_record_1
2291
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:53:09.829409"], ["ends_at", "2014-02-27 19:53:09.829758"], ["created_at", "2015-02-27 19:53:09.833122"], ["updated_at", "2015-02-27 19:53:09.833122"]]
2292
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2293
+  (0.2ms) SAVEPOINT active_record_1
2294
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:53:09.840188"], ["ends_at", "2016-02-27 19:53:09.840576"], ["created_at", "2015-02-27 19:53:09.844094"], ["updated_at", "2015-02-27 19:53:09.844094"]]
2295
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2296
+  (0.2ms) SAVEPOINT active_record_1
2297
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:53:09.851490"], ["ends_at", "2016-02-27 19:53:09.851881"], ["created_at", "2015-02-27 19:53:09.855415"], ["updated_at", "2015-02-27 19:53:09.855415"]]
2298
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2299
+  (0.2ms) SAVEPOINT active_record_1
2300
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:53:09.862345"], ["ends_at", "2015-02-27 18:53:09.862674"], ["created_at", "2015-02-27 19:53:09.865941"], ["updated_at", "2015-02-27 19:53:09.865941"]]
2301
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2302
+  (0.2ms) rollback transaction
2303
+  (0.2ms) begin transaction
2304
+ -----------------------------------------
2305
+ ActsAsIntervalTest: test_intervals_before
2306
+ -----------------------------------------
2307
+  (0.2ms) SAVEPOINT active_record_1
2308
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:53:09.875192"], ["ends_at", "2015-02-20 19:53:09.875526"], ["created_at", "2015-02-27 19:53:09.878962"], ["updated_at", "2015-02-27 19:53:09.878962"]]
2309
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2310
+  (0.2ms) SAVEPOINT active_record_1
2311
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:53:09.886053"], ["ends_at", "2014-02-27 19:53:09.886375"], ["created_at", "2015-02-27 19:53:09.889744"], ["updated_at", "2015-02-27 19:53:09.889744"]]
2312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2313
+  (0.2ms) SAVEPOINT active_record_1
2314
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:53:09.896689"], ["ends_at", "2016-02-27 19:53:09.897023"], ["created_at", "2015-02-27 19:53:09.900443"], ["updated_at", "2015-02-27 19:53:09.900443"]]
2315
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2316
+  (0.2ms) SAVEPOINT active_record_1
2317
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:53:09.907492"], ["ends_at", "2016-02-27 19:53:09.907818"], ["created_at", "2015-02-27 19:53:09.911164"], ["updated_at", "2015-02-27 19:53:09.911164"]]
2318
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2319
+  (0.2ms) SAVEPOINT active_record_1
2320
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:53:09.918239"], ["ends_at", "2015-02-27 18:53:09.918577"], ["created_at", "2015-02-27 19:53:09.921833"], ["updated_at", "2015-02-27 19:53:09.921833"]]
2321
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2322
+  (0.2ms) rollback transaction
2323
+  (0.2ms) begin transaction
2324
+ ----------------------------------------------------
2325
+ ActsAsIntervalTest: test_overlapping_interval_method
2326
+ ----------------------------------------------------
2327
+  (0.2ms) rollback transaction
2328
+  (0.2ms) begin transaction
2329
+ ---------------------------------------------
2330
+ ActsAsIntervalTest: test_past_interval_method
2331
+ ---------------------------------------------
2332
+  (0.2ms) rollback transaction
2333
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2334
+  (106.8ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2335
+  (100.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2336
+  (0.2ms) select sqlite_version(*)
2337
+  (99.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2338
+  (0.3ms) SELECT version FROM "schema_migrations"
2339
+  (99.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2340
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2341
+  (0.8ms) begin transaction
2342
+ -----------------------------------------------
2343
+ ActsAsIntervalTest: test_future_interval_method
2344
+ -----------------------------------------------
2345
+  (0.1ms) rollback transaction
2346
+  (0.3ms) begin transaction
2347
+ -----------------------------------------------
2348
+ ActsAsIntervalTest: test_intersecting_intervals
2349
+ -----------------------------------------------
2350
+  (0.1ms) SAVEPOINT active_record_1
2351
+ SQL (0.5ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:53:40.312105"], ["ends_at", "2015-02-28 19:53:40.312546"], ["created_at", "2015-02-27 19:53:40.317690"], ["updated_at", "2015-02-27 19:53:40.317690"]]
2352
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2353
+  (0.2ms) SAVEPOINT active_record_1
2354
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:53:40.328858"], ["ends_at", "2015-01-27 19:53:40.329303"], ["created_at", "2015-02-27 19:53:40.332016"], ["updated_at", "2015-02-27 19:53:40.332016"]]
2355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2356
+  (0.1ms) SAVEPOINT active_record_1
2357
+ SQL (3.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:53:40.336412"], ["ends_at", "2017-02-27 19:53:40.336597"], ["created_at", "2015-02-27 19:53:40.338673"], ["updated_at", "2015-02-27 19:53:40.338673"]]
2358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2359
+  (0.1ms) SAVEPOINT active_record_1
2360
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:53:40.345649"], ["ends_at", "2015-03-27 19:53:40.345866"], ["created_at", "2015-02-27 19:53:40.347714"], ["updated_at", "2015-02-27 19:53:40.347714"]]
2361
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2362
+  (0.2ms) rollback transaction
2363
+  (0.1ms) begin transaction
2364
+ ----------------------------------------
2365
+ ActsAsIntervalTest: test_intervals_after
2366
+ ----------------------------------------
2367
+  (0.1ms) SAVEPOINT active_record_1
2368
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:53:40.352874"], ["ends_at", "2015-02-20 19:53:40.353057"], ["created_at", "2015-02-27 19:53:40.354952"], ["updated_at", "2015-02-27 19:53:40.354952"]]
2369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2370
+  (0.1ms) SAVEPOINT active_record_1
2371
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:53:40.359091"], ["ends_at", "2014-02-27 19:53:40.359283"], ["created_at", "2015-02-27 19:53:40.361089"], ["updated_at", "2015-02-27 19:53:40.361089"]]
2372
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2373
+  (0.1ms) SAVEPOINT active_record_1
2374
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:53:40.364986"], ["ends_at", "2016-02-27 19:53:40.365166"], ["created_at", "2015-02-27 19:53:40.367029"], ["updated_at", "2015-02-27 19:53:40.367029"]]
2375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2376
+  (0.1ms) SAVEPOINT active_record_1
2377
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:53:40.370710"], ["ends_at", "2016-02-27 19:53:40.370889"], ["created_at", "2015-02-27 19:53:40.372850"], ["updated_at", "2015-02-27 19:53:40.372850"]]
2378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2379
+  (0.1ms) SAVEPOINT active_record_1
2380
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:53:40.376557"], ["ends_at", "2015-02-27 18:53:40.376730"], ["created_at", "2015-02-27 19:53:40.378395"], ["updated_at", "2015-02-27 19:53:40.378395"]]
2381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2382
+  (0.2ms) rollback transaction
2383
+  (0.1ms) begin transaction
2384
+ -----------------------------------------
2385
+ ActsAsIntervalTest: test_intervals_before
2386
+ -----------------------------------------
2387
+  (0.1ms) SAVEPOINT active_record_1
2388
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:53:40.383569"], ["ends_at", "2015-02-20 19:53:40.383776"], ["created_at", "2015-02-27 19:53:40.385610"], ["updated_at", "2015-02-27 19:53:40.385610"]]
2389
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2390
+  (0.1ms) SAVEPOINT active_record_1
2391
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:53:40.389606"], ["ends_at", "2014-02-27 19:53:40.389810"], ["created_at", "2015-02-27 19:53:40.391767"], ["updated_at", "2015-02-27 19:53:40.391767"]]
2392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2393
+  (0.1ms) SAVEPOINT active_record_1
2394
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:53:40.395637"], ["ends_at", "2016-02-27 19:53:40.395845"], ["created_at", "2015-02-27 19:53:40.397670"], ["updated_at", "2015-02-27 19:53:40.397670"]]
2395
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2396
+  (0.1ms) SAVEPOINT active_record_1
2397
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:53:40.401359"], ["ends_at", "2016-02-27 19:53:40.401539"], ["created_at", "2015-02-27 19:53:40.403409"], ["updated_at", "2015-02-27 19:53:40.403409"]]
2398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2399
+  (0.1ms) SAVEPOINT active_record_1
2400
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:53:40.407214"], ["ends_at", "2015-02-27 18:53:40.407384"], ["created_at", "2015-02-27 19:53:40.409086"], ["updated_at", "2015-02-27 19:53:40.409086"]]
2401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2402
+  (0.2ms) rollback transaction
2403
+  (0.1ms) begin transaction
2404
+ ----------------------------------------------------
2405
+ ActsAsIntervalTest: test_overlapping_interval_method
2406
+ ----------------------------------------------------
2407
+  (0.1ms) rollback transaction
2408
+  (0.1ms) begin transaction
2409
+ ---------------------------------------------
2410
+ ActsAsIntervalTest: test_past_interval_method
2411
+ ---------------------------------------------
2412
+  (0.1ms) rollback transaction
2413
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2414
+  (111.6ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2415
+  (80.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2416
+  (0.2ms) select sqlite_version(*)
2417
+  (77.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2418
+  (0.2ms) SELECT version FROM "schema_migrations"
2419
+  (99.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2420
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2421
+  (0.1ms) begin transaction
2422
+ -----------------------------------------------
2423
+ ActsAsIntervalTest: test_future_interval_method
2424
+ -----------------------------------------------
2425
+  (0.1ms) rollback transaction
2426
+  (0.0ms) begin transaction
2427
+ -----------------------------------------------
2428
+ ActsAsIntervalTest: test_intersecting_intervals
2429
+ -----------------------------------------------
2430
+  (0.0ms) SAVEPOINT active_record_1
2431
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:54:27.453981"], ["ends_at", "2015-02-28 19:54:27.454671"], ["created_at", "2015-02-27 19:54:27.458243"], ["updated_at", "2015-02-27 19:54:27.458243"]]
2432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2433
+  (0.0ms) SAVEPOINT active_record_1
2434
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:54:27.462088"], ["ends_at", "2015-01-27 19:54:27.462160"], ["created_at", "2015-02-27 19:54:27.463060"], ["updated_at", "2015-02-27 19:54:27.463060"]]
2435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2436
+  (0.0ms) SAVEPOINT active_record_1
2437
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:54:27.463956"], ["ends_at", "2017-02-27 19:54:27.464004"], ["created_at", "2015-02-27 19:54:27.464476"], ["updated_at", "2015-02-27 19:54:27.464476"]]
2438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2439
+  (0.0ms) SAVEPOINT active_record_1
2440
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:54:27.465241"], ["ends_at", "2015-03-27 19:54:27.465285"], ["created_at", "2015-02-27 19:54:27.465754"], ["updated_at", "2015-02-27 19:54:27.465754"]]
2441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2442
+  (0.1ms) rollback transaction
2443
+  (0.0ms) begin transaction
2444
+ ----------------------------------------
2445
+ ActsAsIntervalTest: test_intervals_after
2446
+ ----------------------------------------
2447
+  (0.0ms) SAVEPOINT active_record_1
2448
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:54:27.467049"], ["ends_at", "2015-02-20 19:54:27.467097"], ["created_at", "2015-02-27 19:54:27.467599"], ["updated_at", "2015-02-27 19:54:27.467599"]]
2449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2450
+  (0.0ms) SAVEPOINT active_record_1
2451
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:54:27.468442"], ["ends_at", "2014-02-27 19:54:27.468487"], ["created_at", "2015-02-27 19:54:27.468980"], ["updated_at", "2015-02-27 19:54:27.468980"]]
2452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2453
+  (0.1ms) SAVEPOINT active_record_1
2454
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:54:27.470106"], ["ends_at", "2016-02-27 19:54:27.470158"], ["created_at", "2015-02-27 19:54:27.470582"], ["updated_at", "2015-02-27 19:54:27.470582"]]
2455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2456
+  (0.0ms) SAVEPOINT active_record_1
2457
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:54:27.471473"], ["ends_at", "2016-02-27 19:54:27.471838"], ["created_at", "2015-02-27 19:54:27.472315"], ["updated_at", "2015-02-27 19:54:27.472315"]]
2458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2459
+  (0.0ms) SAVEPOINT active_record_1
2460
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:54:27.473547"], ["ends_at", "2015-02-27 18:54:27.473617"], ["created_at", "2015-02-27 19:54:27.474321"], ["updated_at", "2015-02-27 19:54:27.474321"]]
2461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2462
+  (0.1ms) rollback transaction
2463
+  (0.0ms) begin transaction
2464
+ -----------------------------------------
2465
+ ActsAsIntervalTest: test_intervals_before
2466
+ -----------------------------------------
2467
+  (0.0ms) SAVEPOINT active_record_1
2468
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:54:27.476223"], ["ends_at", "2015-02-20 19:54:27.476278"], ["created_at", "2015-02-27 19:54:27.476632"], ["updated_at", "2015-02-27 19:54:27.476632"]]
2469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2470
+  (0.0ms) SAVEPOINT active_record_1
2471
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:54:27.477657"], ["ends_at", "2014-02-27 19:54:27.477702"], ["created_at", "2015-02-27 19:54:27.478188"], ["updated_at", "2015-02-27 19:54:27.478188"]]
2472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2473
+  (0.0ms) SAVEPOINT active_record_1
2474
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:54:27.479047"], ["ends_at", "2016-02-27 19:54:27.479092"], ["created_at", "2015-02-27 19:54:27.479590"], ["updated_at", "2015-02-27 19:54:27.479590"]]
2475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2476
+  (0.0ms) SAVEPOINT active_record_1
2477
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:54:27.480349"], ["ends_at", "2016-02-27 19:54:27.480405"], ["created_at", "2015-02-27 19:54:27.480717"], ["updated_at", "2015-02-27 19:54:27.480717"]]
2478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2479
+  (0.0ms) SAVEPOINT active_record_1
2480
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:54:27.481478"], ["ends_at", "2015-02-27 18:54:27.481682"], ["created_at", "2015-02-27 19:54:27.481970"], ["updated_at", "2015-02-27 19:54:27.481970"]]
2481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2482
+  (0.1ms) rollback transaction
2483
+  (0.0ms) begin transaction
2484
+ ----------------------------------------------------
2485
+ ActsAsIntervalTest: test_overlapping_interval_method
2486
+ ----------------------------------------------------
2487
+  (0.0ms) rollback transaction
2488
+  (0.0ms) begin transaction
2489
+ ---------------------------------------------
2490
+ ActsAsIntervalTest: test_past_interval_method
2491
+ ---------------------------------------------
2492
+  (0.0ms) rollback transaction
2493
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2494
+  (2444.9ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2495
+  (197.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2496
+  (0.2ms) select sqlite_version(*)
2497
+  (210.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2498
+  (0.3ms) SELECT version FROM "schema_migrations"
2499
+  (121.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2500
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2501
+  (0.1ms) begin transaction
2502
+ -----------------------------------------------
2503
+ ActsAsIntervalTest: test_future_interval_method
2504
+ -----------------------------------------------
2505
+  (0.1ms) rollback transaction
2506
+  (0.0ms) begin transaction
2507
+ -----------------------------------------------
2508
+ ActsAsIntervalTest: test_intersecting_intervals
2509
+ -----------------------------------------------
2510
+  (0.0ms) SAVEPOINT active_record_1
2511
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:54:57.873088"], ["ends_at", "2015-02-28 19:54:57.873227"], ["created_at", "2015-02-27 19:54:57.875914"], ["updated_at", "2015-02-27 19:54:57.875914"]]
2512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2513
+  (0.1ms) SAVEPOINT active_record_1
2514
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:54:57.879640"], ["ends_at", "2015-01-27 19:54:57.879870"], ["created_at", "2015-02-27 19:54:57.880327"], ["updated_at", "2015-02-27 19:54:57.880327"]]
2515
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2516
+  (0.0ms) SAVEPOINT active_record_1
2517
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:54:57.881472"], ["ends_at", "2017-02-27 19:54:57.881525"], ["created_at", "2015-02-27 19:54:57.881945"], ["updated_at", "2015-02-27 19:54:57.881945"]]
2518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2519
+  (0.0ms) SAVEPOINT active_record_1
2520
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:54:57.883293"], ["ends_at", "2015-03-27 19:54:57.883340"], ["created_at", "2015-02-27 19:54:57.883660"], ["updated_at", "2015-02-27 19:54:57.883660"]]
2521
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2522
+  (0.1ms) rollback transaction
2523
+  (0.0ms) begin transaction
2524
+ ----------------------------------------
2525
+ ActsAsIntervalTest: test_intervals_after
2526
+ ----------------------------------------
2527
+  (0.0ms) SAVEPOINT active_record_1
2528
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:54:57.885119"], ["ends_at", "2015-02-20 19:54:57.885169"], ["created_at", "2015-02-27 19:54:57.885662"], ["updated_at", "2015-02-27 19:54:57.885662"]]
2529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2530
+  (0.0ms) SAVEPOINT active_record_1
2531
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:54:57.886522"], ["ends_at", "2014-02-27 19:54:57.886570"], ["created_at", "2015-02-27 19:54:57.887071"], ["updated_at", "2015-02-27 19:54:57.887071"]]
2532
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2533
+  (0.0ms) SAVEPOINT active_record_1
2534
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:54:57.888051"], ["ends_at", "2016-02-27 19:54:57.888121"], ["created_at", "2015-02-27 19:54:57.888707"], ["updated_at", "2015-02-27 19:54:57.888707"]]
2535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2536
+  (0.0ms) SAVEPOINT active_record_1
2537
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:54:57.889648"], ["ends_at", "2016-02-27 19:54:57.889705"], ["created_at", "2015-02-27 19:54:57.890282"], ["updated_at", "2015-02-27 19:54:57.890282"]]
2538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2539
+  (0.2ms) SAVEPOINT active_record_1
2540
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:54:57.891334"], ["ends_at", "2015-02-27 18:54:57.891385"], ["created_at", "2015-02-27 19:54:57.891984"], ["updated_at", "2015-02-27 19:54:57.891984"]]
2541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2542
+  (0.1ms) rollback transaction
2543
+  (0.0ms) begin transaction
2544
+ -----------------------------------------
2545
+ ActsAsIntervalTest: test_intervals_before
2546
+ -----------------------------------------
2547
+  (0.0ms) SAVEPOINT active_record_1
2548
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:54:57.893310"], ["ends_at", "2015-02-20 19:54:57.893361"], ["created_at", "2015-02-27 19:54:57.893911"], ["updated_at", "2015-02-27 19:54:57.893911"]]
2549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2550
+  (0.0ms) SAVEPOINT active_record_1
2551
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:54:57.894919"], ["ends_at", "2014-02-27 19:54:57.894965"], ["created_at", "2015-02-27 19:54:57.895490"], ["updated_at", "2015-02-27 19:54:57.895490"]]
2552
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2553
+  (0.0ms) SAVEPOINT active_record_1
2554
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:54:57.896501"], ["ends_at", "2016-02-27 19:54:57.896550"], ["created_at", "2015-02-27 19:54:57.896883"], ["updated_at", "2015-02-27 19:54:57.896883"]]
2555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2556
+  (0.0ms) SAVEPOINT active_record_1
2557
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:54:57.898096"], ["ends_at", "2016-02-27 19:54:57.898158"], ["created_at", "2015-02-27 19:54:57.898613"], ["updated_at", "2015-02-27 19:54:57.898613"]]
2558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2559
+  (0.0ms) SAVEPOINT active_record_1
2560
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:54:57.899601"], ["ends_at", "2015-02-27 18:54:57.899645"], ["created_at", "2015-02-27 19:54:57.899938"], ["updated_at", "2015-02-27 19:54:57.899938"]]
2561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2562
+  (0.1ms) rollback transaction
2563
+  (0.0ms) begin transaction
2564
+ ----------------------------------------------------
2565
+ ActsAsIntervalTest: test_overlapping_interval_method
2566
+ ----------------------------------------------------
2567
+  (0.0ms) rollback transaction
2568
+  (0.0ms) begin transaction
2569
+ ---------------------------------------------
2570
+ ActsAsIntervalTest: test_past_interval_method
2571
+ ---------------------------------------------
2572
+  (0.0ms) rollback transaction
2573
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2574
+  (93.4ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2575
+  (68.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2576
+  (0.2ms) select sqlite_version(*)
2577
+  (98.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2578
+  (0.3ms) SELECT version FROM "schema_migrations"
2579
+  (99.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2580
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2581
+  (0.1ms) begin transaction
2582
+ -----------------------------------------------
2583
+ ActsAsIntervalTest: test_future_interval_method
2584
+ -----------------------------------------------
2585
+  (0.3ms) rollback transaction
2586
+  (0.0ms) begin transaction
2587
+ -----------------------------------------------
2588
+ ActsAsIntervalTest: test_intersecting_intervals
2589
+ -----------------------------------------------
2590
+  (0.0ms) SAVEPOINT active_record_1
2591
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:56:28.566031"], ["ends_at", "2015-02-28 19:56:28.566178"], ["created_at", "2015-02-27 19:56:28.569275"], ["updated_at", "2015-02-27 19:56:28.569275"]]
2592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2593
+  (0.0ms) SAVEPOINT active_record_1
2594
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:56:28.573852"], ["ends_at", "2015-01-27 19:56:28.573933"], ["created_at", "2015-02-27 19:56:28.574341"], ["updated_at", "2015-02-27 19:56:28.574341"]]
2595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2596
+  (0.0ms) SAVEPOINT active_record_1
2597
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:56:28.575278"], ["ends_at", "2017-02-27 19:56:28.575327"], ["created_at", "2015-02-27 19:56:28.575815"], ["updated_at", "2015-02-27 19:56:28.575815"]]
2598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2599
+  (0.0ms) SAVEPOINT active_record_1
2600
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:56:28.576623"], ["ends_at", "2015-03-27 19:56:28.576670"], ["created_at", "2015-02-27 19:56:28.577154"], ["updated_at", "2015-02-27 19:56:28.577154"]]
2601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2602
+  (0.1ms) rollback transaction
2603
+  (0.0ms) begin transaction
2604
+ ----------------------------------------
2605
+ ActsAsIntervalTest: test_intervals_after
2606
+ ----------------------------------------
2607
+  (0.0ms) SAVEPOINT active_record_1
2608
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:56:28.578599"], ["ends_at", "2015-02-20 19:56:28.578648"], ["created_at", "2015-02-27 19:56:28.578973"], ["updated_at", "2015-02-27 19:56:28.578973"]]
2609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2610
+  (0.0ms) SAVEPOINT active_record_1
2611
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:56:28.580021"], ["ends_at", "2014-02-27 19:56:28.580072"], ["created_at", "2015-02-27 19:56:28.580604"], ["updated_at", "2015-02-27 19:56:28.580604"]]
2612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2613
+  (0.1ms) SAVEPOINT active_record_1
2614
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:56:28.581691"], ["ends_at", "2016-02-27 19:56:28.581757"], ["created_at", "2015-02-27 19:56:28.582646"], ["updated_at", "2015-02-27 19:56:28.582646"]]
2615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2616
+  (0.0ms) SAVEPOINT active_record_1
2617
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:56:28.583891"], ["ends_at", "2016-02-27 19:56:28.583968"], ["created_at", "2015-02-27 19:56:28.584703"], ["updated_at", "2015-02-27 19:56:28.584703"]]
2618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2619
+  (0.0ms) SAVEPOINT active_record_1
2620
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:56:28.585702"], ["ends_at", "2015-02-27 18:56:28.585750"], ["created_at", "2015-02-27 19:56:28.586210"], ["updated_at", "2015-02-27 19:56:28.586210"]]
2621
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2622
+  (0.1ms) rollback transaction
2623
+  (0.0ms) begin transaction
2624
+ -----------------------------------------
2625
+ ActsAsIntervalTest: test_intervals_before
2626
+ -----------------------------------------
2627
+  (0.0ms) SAVEPOINT active_record_1
2628
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:56:28.587779"], ["ends_at", "2015-02-20 19:56:28.587860"], ["created_at", "2015-02-27 19:56:28.588336"], ["updated_at", "2015-02-27 19:56:28.588336"]]
2629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2630
+  (0.0ms) SAVEPOINT active_record_1
2631
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:56:28.589354"], ["ends_at", "2014-02-27 19:56:28.589612"], ["created_at", "2015-02-27 19:56:28.589926"], ["updated_at", "2015-02-27 19:56:28.589926"]]
2632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2633
+  (0.0ms) SAVEPOINT active_record_1
2634
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:56:28.590932"], ["ends_at", "2016-02-27 19:56:28.590980"], ["created_at", "2015-02-27 19:56:28.591292"], ["updated_at", "2015-02-27 19:56:28.591292"]]
2635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2636
+  (0.0ms) SAVEPOINT active_record_1
2637
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:56:28.592063"], ["ends_at", "2016-02-27 19:56:28.592109"], ["created_at", "2015-02-27 19:56:28.592590"], ["updated_at", "2015-02-27 19:56:28.592590"]]
2638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2639
+  (0.0ms) SAVEPOINT active_record_1
2640
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:56:28.593384"], ["ends_at", "2015-02-27 18:56:28.593428"], ["created_at", "2015-02-27 19:56:28.593715"], ["updated_at", "2015-02-27 19:56:28.593715"]]
2641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2642
+  (0.1ms) rollback transaction
2643
+  (0.0ms) begin transaction
2644
+ ----------------------------------------------------
2645
+ ActsAsIntervalTest: test_overlapping_interval_method
2646
+ ----------------------------------------------------
2647
+  (0.0ms) rollback transaction
2648
+  (0.0ms) begin transaction
2649
+ ---------------------------------------------
2650
+ ActsAsIntervalTest: test_past_interval_method
2651
+ ---------------------------------------------
2652
+  (0.0ms) rollback transaction
2653
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2654
+  (107.7ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2655
+  (101.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2656
+  (0.2ms) select sqlite_version(*)
2657
+  (101.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2658
+  (0.2ms) SELECT version FROM "schema_migrations"
2659
+  (97.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2660
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2661
+  (0.1ms) begin transaction
2662
+ -----------------------------------------------
2663
+ ActsAsIntervalTest: test_future_interval_method
2664
+ -----------------------------------------------
2665
+  (0.1ms) rollback transaction
2666
+  (0.1ms) begin transaction
2667
+ -----------------------------------------------
2668
+ ActsAsIntervalTest: test_intersecting_intervals
2669
+ -----------------------------------------------
2670
+  (0.1ms) SAVEPOINT active_record_1
2671
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:57:03.268094"], ["ends_at", "2015-02-28 19:57:03.268291"], ["created_at", "2015-02-27 19:57:03.272952"], ["updated_at", "2015-02-27 19:57:03.272952"]]
2672
+  (0.6ms) RELEASE SAVEPOINT active_record_1
2673
+  (0.1ms) SAVEPOINT active_record_1
2674
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:57:03.279016"], ["ends_at", "2015-01-27 19:57:03.279111"], ["created_at", "2015-02-27 19:57:03.279868"], ["updated_at", "2015-02-27 19:57:03.279868"]]
2675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2676
+  (0.0ms) SAVEPOINT active_record_1
2677
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:57:03.281568"], ["ends_at", "2017-02-27 19:57:03.281859"], ["created_at", "2015-02-27 19:57:03.282295"], ["updated_at", "2015-02-27 19:57:03.282295"]]
2678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2679
+  (0.0ms) SAVEPOINT active_record_1
2680
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:57:03.283342"], ["ends_at", "2015-03-27 19:57:03.283407"], ["created_at", "2015-02-27 19:57:03.284037"], ["updated_at", "2015-02-27 19:57:03.284037"]]
2681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2682
+  (0.1ms) rollback transaction
2683
+  (0.0ms) begin transaction
2684
+ ----------------------------------------
2685
+ ActsAsIntervalTest: test_intervals_after
2686
+ ----------------------------------------
2687
+  (0.0ms) SAVEPOINT active_record_1
2688
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:57:03.285567"], ["ends_at", "2015-02-20 19:57:03.285618"], ["created_at", "2015-02-27 19:57:03.285947"], ["updated_at", "2015-02-27 19:57:03.285947"]]
2689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2690
+  (0.0ms) SAVEPOINT active_record_1
2691
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:57:03.287007"], ["ends_at", "2014-02-27 19:57:03.287054"], ["created_at", "2015-02-27 19:57:03.287369"], ["updated_at", "2015-02-27 19:57:03.287369"]]
2692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2693
+  (0.0ms) SAVEPOINT active_record_1
2694
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:57:03.288324"], ["ends_at", "2016-02-27 19:57:03.288370"], ["created_at", "2015-02-27 19:57:03.288863"], ["updated_at", "2015-02-27 19:57:03.288863"]]
2695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2696
+  (0.0ms) SAVEPOINT active_record_1
2697
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:57:03.289674"], ["ends_at", "2016-02-27 19:57:03.289719"], ["created_at", "2015-02-27 19:57:03.290227"], ["updated_at", "2015-02-27 19:57:03.290227"]]
2698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2699
+  (0.0ms) SAVEPOINT active_record_1
2700
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:57:03.291063"], ["ends_at", "2015-02-27 18:57:03.291106"], ["created_at", "2015-02-27 19:57:03.291751"], ["updated_at", "2015-02-27 19:57:03.291751"]]
2701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2702
+  (0.2ms) rollback transaction
2703
+  (0.0ms) begin transaction
2704
+ -----------------------------------------
2705
+ ActsAsIntervalTest: test_intervals_before
2706
+ -----------------------------------------
2707
+  (0.0ms) SAVEPOINT active_record_1
2708
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:57:03.293066"], ["ends_at", "2015-02-20 19:57:03.293114"], ["created_at", "2015-02-27 19:57:03.293597"], ["updated_at", "2015-02-27 19:57:03.293597"]]
2709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2710
+  (0.0ms) SAVEPOINT active_record_1
2711
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:57:03.294397"], ["ends_at", "2014-02-27 19:57:03.294463"], ["created_at", "2015-02-27 19:57:03.295026"], ["updated_at", "2015-02-27 19:57:03.295026"]]
2712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2713
+  (0.0ms) SAVEPOINT active_record_1
2714
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:57:03.295827"], ["ends_at", "2016-02-27 19:57:03.295873"], ["created_at", "2015-02-27 19:57:03.296198"], ["updated_at", "2015-02-27 19:57:03.296198"]]
2715
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2716
+  (0.0ms) SAVEPOINT active_record_1
2717
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:57:03.297182"], ["ends_at", "2016-02-27 19:57:03.297227"], ["created_at", "2015-02-27 19:57:03.297542"], ["updated_at", "2015-02-27 19:57:03.297542"]]
2718
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2719
+  (0.0ms) SAVEPOINT active_record_1
2720
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:57:03.298451"], ["ends_at", "2015-02-27 18:57:03.298496"], ["created_at", "2015-02-27 19:57:03.298977"], ["updated_at", "2015-02-27 19:57:03.298977"]]
2721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2722
+  (0.1ms) rollback transaction
2723
+  (0.0ms) begin transaction
2724
+ ----------------------------------------------------
2725
+ ActsAsIntervalTest: test_overlapping_interval_method
2726
+ ----------------------------------------------------
2727
+  (0.0ms) rollback transaction
2728
+  (0.2ms) begin transaction
2729
+ ---------------------------------------------
2730
+ ActsAsIntervalTest: test_past_interval_method
2731
+ ---------------------------------------------
2732
+  (0.0ms) rollback transaction
2733
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2734
+  (213.5ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2735
+  (217.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2736
+  (0.2ms) select sqlite_version(*)
2737
+  (87.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2738
+  (0.2ms) SELECT version FROM "schema_migrations"
2739
+  (79.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2740
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2741
+  (0.1ms) begin transaction
2742
+ -----------------------------------------------
2743
+ ActsAsIntervalTest: test_future_interval_method
2744
+ -----------------------------------------------
2745
+  (0.1ms) rollback transaction
2746
+  (0.0ms) begin transaction
2747
+ -----------------------------------------------
2748
+ ActsAsIntervalTest: test_intersecting_intervals
2749
+ -----------------------------------------------
2750
+  (0.0ms) SAVEPOINT active_record_1
2751
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:57:46.550977"], ["ends_at", "2015-02-28 19:57:46.551168"], ["created_at", "2015-02-27 19:57:46.555038"], ["updated_at", "2015-02-27 19:57:46.555038"]]
2752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2753
+  (0.0ms) SAVEPOINT active_record_1
2754
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:57:46.560387"], ["ends_at", "2015-01-27 19:57:46.560481"], ["created_at", "2015-02-27 19:57:46.561097"], ["updated_at", "2015-02-27 19:57:46.561097"]]
2755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2756
+  (0.1ms) SAVEPOINT active_record_1
2757
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:57:46.562462"], ["ends_at", "2017-02-27 19:57:46.562541"], ["created_at", "2015-02-27 19:57:46.563236"], ["updated_at", "2015-02-27 19:57:46.563236"]]
2758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2759
+  (0.0ms) SAVEPOINT active_record_1
2760
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:57:46.564768"], ["ends_at", "2015-03-27 19:57:46.564830"], ["created_at", "2015-02-27 19:57:46.565496"], ["updated_at", "2015-02-27 19:57:46.565496"]]
2761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2762
+  (0.1ms) rollback transaction
2763
+  (0.0ms) begin transaction
2764
+ ----------------------------------------
2765
+ ActsAsIntervalTest: test_intervals_after
2766
+ ----------------------------------------
2767
+  (0.0ms) SAVEPOINT active_record_1
2768
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:57:46.567535"], ["ends_at", "2015-02-20 19:57:46.567606"], ["created_at", "2015-02-27 19:57:46.568067"], ["updated_at", "2015-02-27 19:57:46.568067"]]
2769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2770
+  (0.0ms) SAVEPOINT active_record_1
2771
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:57:46.569391"], ["ends_at", "2014-02-27 19:57:46.569457"], ["created_at", "2015-02-27 19:57:46.570082"], ["updated_at", "2015-02-27 19:57:46.570082"]]
2772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2773
+  (0.0ms) SAVEPOINT active_record_1
2774
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:57:46.571140"], ["ends_at", "2016-02-27 19:57:46.571197"], ["created_at", "2015-02-27 19:57:46.571784"], ["updated_at", "2015-02-27 19:57:46.571784"]]
2775
+  (0.4ms) RELEASE SAVEPOINT active_record_1
2776
+  (0.0ms) SAVEPOINT active_record_1
2777
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:57:46.573114"], ["ends_at", "2016-02-27 19:57:46.573174"], ["created_at", "2015-02-27 19:57:46.573574"], ["updated_at", "2015-02-27 19:57:46.573574"]]
2778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2779
+  (0.0ms) SAVEPOINT active_record_1
2780
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:57:46.574552"], ["ends_at", "2015-02-27 18:57:46.574786"], ["created_at", "2015-02-27 19:57:46.575139"], ["updated_at", "2015-02-27 19:57:46.575139"]]
2781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2782
+  (0.1ms) rollback transaction
2783
+  (0.0ms) begin transaction
2784
+ -----------------------------------------
2785
+ ActsAsIntervalTest: test_intervals_before
2786
+ -----------------------------------------
2787
+  (0.0ms) SAVEPOINT active_record_1
2788
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:57:46.576683"], ["ends_at", "2015-02-20 19:57:46.576740"], ["created_at", "2015-02-27 19:57:46.577379"], ["updated_at", "2015-02-27 19:57:46.577379"]]
2789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2790
+  (0.0ms) SAVEPOINT active_record_1
2791
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:57:46.578402"], ["ends_at", "2014-02-27 19:57:46.578510"], ["created_at", "2015-02-27 19:57:46.579209"], ["updated_at", "2015-02-27 19:57:46.579209"]]
2792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2793
+  (0.0ms) SAVEPOINT active_record_1
2794
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:57:46.580300"], ["ends_at", "2016-02-27 19:57:46.580358"], ["created_at", "2015-02-27 19:57:46.580736"], ["updated_at", "2015-02-27 19:57:46.580736"]]
2795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2796
+  (0.0ms) SAVEPOINT active_record_1
2797
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:57:46.581845"], ["ends_at", "2016-02-27 19:57:46.581902"], ["created_at", "2015-02-27 19:57:46.582287"], ["updated_at", "2015-02-27 19:57:46.582287"]]
2798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2799
+  (0.0ms) SAVEPOINT active_record_1
2800
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:57:46.583231"], ["ends_at", "2015-02-27 18:57:46.583283"], ["created_at", "2015-02-27 19:57:46.583809"], ["updated_at", "2015-02-27 19:57:46.583809"]]
2801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2802
+  (0.1ms) rollback transaction
2803
+  (0.0ms) begin transaction
2804
+ ----------------------------------------------------
2805
+ ActsAsIntervalTest: test_overlapping_interval_method
2806
+ ----------------------------------------------------
2807
+  (0.0ms) rollback transaction
2808
+  (0.0ms) begin transaction
2809
+ ---------------------------------------------
2810
+ ActsAsIntervalTest: test_past_interval_method
2811
+ ---------------------------------------------
2812
+  (0.0ms) rollback transaction
2813
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2814
+  (113.3ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2815
+  (103.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2816
+  (0.2ms) select sqlite_version(*)
2817
+  (121.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2818
+  (0.2ms) SELECT version FROM "schema_migrations"
2819
+  (122.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2820
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2821
+  (0.8ms) begin transaction
2822
+ -----------------------------------------------
2823
+ ActsAsIntervalTest: test_future_interval_method
2824
+ -----------------------------------------------
2825
+  (0.2ms) rollback transaction
2826
+  (0.0ms) begin transaction
2827
+ -----------------------------------------------
2828
+ ActsAsIntervalTest: test_intersecting_intervals
2829
+ -----------------------------------------------
2830
+  (0.0ms) SAVEPOINT active_record_1
2831
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:58:49.711179"], ["ends_at", "2015-02-28 19:58:49.711847"], ["created_at", "2015-02-27 19:58:49.715056"], ["updated_at", "2015-02-27 19:58:49.715056"]]
2832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2833
+  (0.0ms) SAVEPOINT active_record_1
2834
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:58:49.718771"], ["ends_at", "2015-01-27 19:58:49.718841"], ["created_at", "2015-02-27 19:58:49.719232"], ["updated_at", "2015-02-27 19:58:49.719232"]]
2835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2836
+  (0.0ms) SAVEPOINT active_record_1
2837
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:58:49.720353"], ["ends_at", "2017-02-27 19:58:49.720838"], ["created_at", "2015-02-27 19:58:49.721202"], ["updated_at", "2015-02-27 19:58:49.721202"]]
2838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2839
+  (0.1ms) SAVEPOINT active_record_1
2840
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:58:49.722353"], ["ends_at", "2015-03-27 19:58:49.722902"], ["created_at", "2015-02-27 19:58:49.723441"], ["updated_at", "2015-02-27 19:58:49.723441"]]
2841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2842
+  (0.1ms) rollback transaction
2843
+  (0.1ms) begin transaction
2844
+ ----------------------------------------
2845
+ ActsAsIntervalTest: test_intervals_after
2846
+ ----------------------------------------
2847
+  (0.0ms) SAVEPOINT active_record_1
2848
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:58:49.725637"], ["ends_at", "2015-02-20 19:58:49.725740"], ["created_at", "2015-02-27 19:58:49.726539"], ["updated_at", "2015-02-27 19:58:49.726539"]]
2849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2850
+  (0.2ms) SAVEPOINT active_record_1
2851
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:58:49.727681"], ["ends_at", "2014-02-27 19:58:49.727742"], ["created_at", "2015-02-27 19:58:49.728270"], ["updated_at", "2015-02-27 19:58:49.728270"]]
2852
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2853
+  (0.0ms) SAVEPOINT active_record_1
2854
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:58:49.729168"], ["ends_at", "2016-02-27 19:58:49.729230"], ["created_at", "2015-02-27 19:58:49.729753"], ["updated_at", "2015-02-27 19:58:49.729753"]]
2855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2856
+  (0.0ms) SAVEPOINT active_record_1
2857
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:58:49.731115"], ["ends_at", "2016-02-27 19:58:49.731182"], ["created_at", "2015-02-27 19:58:49.731707"], ["updated_at", "2015-02-27 19:58:49.731707"]]
2858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2859
+  (0.0ms) SAVEPOINT active_record_1
2860
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:58:49.732685"], ["ends_at", "2015-02-27 18:58:49.732732"], ["created_at", "2015-02-27 19:58:49.733029"], ["updated_at", "2015-02-27 19:58:49.733029"]]
2861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2862
+  (0.1ms) rollback transaction
2863
+  (0.0ms) begin transaction
2864
+ -----------------------------------------
2865
+ ActsAsIntervalTest: test_intervals_before
2866
+ -----------------------------------------
2867
+  (0.0ms) SAVEPOINT active_record_1
2868
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:58:49.734477"], ["ends_at", "2015-02-20 19:58:49.734524"], ["created_at", "2015-02-27 19:58:49.734845"], ["updated_at", "2015-02-27 19:58:49.734845"]]
2869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2870
+  (0.0ms) SAVEPOINT active_record_1
2871
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:58:49.736038"], ["ends_at", "2014-02-27 19:58:49.736084"], ["created_at", "2015-02-27 19:58:49.736405"], ["updated_at", "2015-02-27 19:58:49.736405"]]
2872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2873
+  (0.0ms) SAVEPOINT active_record_1
2874
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:58:49.737375"], ["ends_at", "2016-02-27 19:58:49.737422"], ["created_at", "2015-02-27 19:58:49.737735"], ["updated_at", "2015-02-27 19:58:49.737735"]]
2875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2876
+  (0.0ms) SAVEPOINT active_record_1
2877
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:58:49.738689"], ["ends_at", "2016-02-27 19:58:49.738734"], ["created_at", "2015-02-27 19:58:49.739045"], ["updated_at", "2015-02-27 19:58:49.739045"]]
2878
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2879
+  (0.0ms) SAVEPOINT active_record_1
2880
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:58:49.740007"], ["ends_at", "2015-02-27 18:58:49.740049"], ["created_at", "2015-02-27 19:58:49.740334"], ["updated_at", "2015-02-27 19:58:49.740334"]]
2881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2882
+  (0.1ms) rollback transaction
2883
+  (0.0ms) begin transaction
2884
+ ----------------------------------------------------
2885
+ ActsAsIntervalTest: test_overlapping_interval_method
2886
+ ----------------------------------------------------
2887
+  (0.0ms) rollback transaction
2888
+  (0.0ms) begin transaction
2889
+ ---------------------------------------------
2890
+ ActsAsIntervalTest: test_past_interval_method
2891
+ ---------------------------------------------
2892
+  (0.0ms) rollback transaction
2893
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2894
+  (149.3ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2895
+  (123.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2896
+  (0.2ms) select sqlite_version(*)
2897
+  (98.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2898
+  (0.2ms) SELECT version FROM "schema_migrations"
2899
+  (99.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2900
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2901
+  (0.2ms) begin transaction
2902
+ -----------------------------------------------
2903
+ ActsAsIntervalTest: test_future_interval_method
2904
+ -----------------------------------------------
2905
+  (0.1ms) rollback transaction
2906
+  (0.1ms) begin transaction
2907
+ -----------------------------------------------
2908
+ ActsAsIntervalTest: test_intersecting_intervals
2909
+ -----------------------------------------------
2910
+  (0.1ms) SAVEPOINT active_record_1
2911
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:58:58.135701"], ["ends_at", "2015-02-28 19:58:58.135943"], ["created_at", "2015-02-27 19:58:58.141416"], ["updated_at", "2015-02-27 19:58:58.141416"]]
2912
+  (0.5ms) RELEASE SAVEPOINT active_record_1
2913
+  (0.0ms) SAVEPOINT active_record_1
2914
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:58:58.148511"], ["ends_at", "2015-01-27 19:58:58.148590"], ["created_at", "2015-02-27 19:58:58.149011"], ["updated_at", "2015-02-27 19:58:58.149011"]]
2915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2916
+  (0.0ms) SAVEPOINT active_record_1
2917
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 19:58:58.150340"], ["ends_at", "2017-02-27 19:58:58.150390"], ["created_at", "2015-02-27 19:58:58.150890"], ["updated_at", "2015-02-27 19:58:58.150890"]]
2918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2919
+  (0.0ms) SAVEPOINT active_record_1
2920
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:58:58.151692"], ["ends_at", "2015-03-27 19:58:58.151737"], ["created_at", "2015-02-27 19:58:58.152226"], ["updated_at", "2015-02-27 19:58:58.152226"]]
2921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2922
+  (0.1ms) rollback transaction
2923
+  (0.0ms) begin transaction
2924
+ ----------------------------------------
2925
+ ActsAsIntervalTest: test_intervals_after
2926
+ ----------------------------------------
2927
+  (0.0ms) SAVEPOINT active_record_1
2928
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:58:58.153485"], ["ends_at", "2015-02-20 19:58:58.153536"], ["created_at", "2015-02-27 19:58:58.154062"], ["updated_at", "2015-02-27 19:58:58.154062"]]
2929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2930
+  (0.0ms) SAVEPOINT active_record_1
2931
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:58:58.155109"], ["ends_at", "2014-02-27 19:58:58.155322"], ["created_at", "2015-02-27 19:58:58.155649"], ["updated_at", "2015-02-27 19:58:58.155649"]]
2932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2933
+  (0.0ms) SAVEPOINT active_record_1
2934
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:58:58.156624"], ["ends_at", "2016-02-27 19:58:58.156674"], ["created_at", "2015-02-27 19:58:58.156996"], ["updated_at", "2015-02-27 19:58:58.156996"]]
2935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2936
+  (0.0ms) SAVEPOINT active_record_1
2937
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:58:58.158070"], ["ends_at", "2016-02-27 19:58:58.158121"], ["created_at", "2015-02-27 19:58:58.158929"], ["updated_at", "2015-02-27 19:58:58.158929"]]
2938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2939
+  (0.0ms) SAVEPOINT active_record_1
2940
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:58:58.160043"], ["ends_at", "2015-02-27 18:58:58.160091"], ["created_at", "2015-02-27 19:58:58.160553"], ["updated_at", "2015-02-27 19:58:58.160553"]]
2941
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2942
+  (0.1ms) rollback transaction
2943
+  (0.0ms) begin transaction
2944
+ -----------------------------------------
2945
+ ActsAsIntervalTest: test_intervals_before
2946
+ -----------------------------------------
2947
+  (0.0ms) SAVEPOINT active_record_1
2948
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 19:58:58.161762"], ["ends_at", "2015-02-20 19:58:58.161811"], ["created_at", "2015-02-27 19:58:58.162305"], ["updated_at", "2015-02-27 19:58:58.162305"]]
2949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2950
+  (0.0ms) SAVEPOINT active_record_1
2951
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 19:58:58.163172"], ["ends_at", "2014-02-27 19:58:58.163220"], ["created_at", "2015-02-27 19:58:58.163731"], ["updated_at", "2015-02-27 19:58:58.163731"]]
2952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2953
+  (0.0ms) SAVEPOINT active_record_1
2954
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 19:58:58.164564"], ["ends_at", "2016-02-27 19:58:58.164613"], ["created_at", "2015-02-27 19:58:58.165125"], ["updated_at", "2015-02-27 19:58:58.165125"]]
2955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2956
+  (0.0ms) SAVEPOINT active_record_1
2957
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 19:58:58.165933"], ["ends_at", "2016-02-27 19:58:58.165981"], ["created_at", "2015-02-27 19:58:58.166478"], ["updated_at", "2015-02-27 19:58:58.166478"]]
2958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2959
+  (0.0ms) SAVEPOINT active_record_1
2960
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 19:58:58.167273"], ["ends_at", "2015-02-27 18:58:58.167318"], ["created_at", "2015-02-27 19:58:58.167791"], ["updated_at", "2015-02-27 19:58:58.167791"]]
2961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2962
+  (0.1ms) rollback transaction
2963
+  (0.0ms) begin transaction
2964
+ ----------------------------------------------------
2965
+ ActsAsIntervalTest: test_overlapping_interval_method
2966
+ ----------------------------------------------------
2967
+  (0.0ms) rollback transaction
2968
+  (0.0ms) begin transaction
2969
+ ---------------------------------------------
2970
+ ActsAsIntervalTest: test_past_interval_method
2971
+ ---------------------------------------------
2972
+  (0.0ms) rollback transaction
2973
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2974
+  (212.6ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
2975
+  (221.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
2976
+  (0.1ms) select sqlite_version(*)
2977
+  (144.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2978
+  (0.2ms) SELECT version FROM "schema_migrations"
2979
+  (100.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
2980
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2981
+  (0.2ms) begin transaction
2982
+ -----------------------------------------------
2983
+ ActsAsIntervalTest: test_future_interval_method
2984
+ -----------------------------------------------
2985
+  (0.4ms) rollback transaction
2986
+  (0.1ms) begin transaction
2987
+ -----------------------------------------------
2988
+ ActsAsIntervalTest: test_intersecting_intervals
2989
+ -----------------------------------------------
2990
+  (0.1ms) SAVEPOINT active_record_1
2991
+ SQL (0.5ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:01:19.987170"], ["ends_at", "2015-02-28 20:01:19.987662"], ["created_at", "2015-02-27 20:01:19.992801"], ["updated_at", "2015-02-27 20:01:19.992801"]]
2992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2993
+  (0.1ms) SAVEPOINT active_record_1
2994
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:01:20.004143"], ["ends_at", "2015-01-27 20:01:20.004391"], ["created_at", "2015-02-27 20:01:20.006775"], ["updated_at", "2015-02-27 20:01:20.006775"]]
2995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2996
+  (0.2ms) SAVEPOINT active_record_1
2997
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 20:01:20.011114"], ["ends_at", "2017-02-27 20:01:20.011296"], ["created_at", "2015-02-27 20:01:20.013425"], ["updated_at", "2015-02-27 20:01:20.013425"]]
2998
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2999
+  (0.1ms) SAVEPOINT active_record_1
3000
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:01:20.017803"], ["ends_at", "2015-03-27 20:01:20.017998"], ["created_at", "2015-02-27 20:01:20.022920"], ["updated_at", "2015-02-27 20:01:20.022920"]]
3001
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3002
+  (0.2ms) rollback transaction
3003
+  (0.1ms) begin transaction
3004
+ ----------------------------------------
3005
+ ActsAsIntervalTest: test_intervals_after
3006
+ ----------------------------------------
3007
+  (0.1ms) SAVEPOINT active_record_1
3008
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:01:20.028310"], ["ends_at", "2015-02-20 20:01:20.028511"], ["created_at", "2015-02-27 20:01:20.030462"], ["updated_at", "2015-02-27 20:01:20.030462"]]
3009
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3010
+  (0.1ms) SAVEPOINT active_record_1
3011
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:01:20.034604"], ["ends_at", "2014-02-27 20:01:20.034832"], ["created_at", "2015-02-27 20:01:20.036746"], ["updated_at", "2015-02-27 20:01:20.036746"]]
3012
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3013
+  (0.1ms) SAVEPOINT active_record_1
3014
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:01:20.040497"], ["ends_at", "2016-02-27 20:01:20.040707"], ["created_at", "2015-02-27 20:01:20.042489"], ["updated_at", "2015-02-27 20:01:20.042489"]]
3015
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3016
+  (0.1ms) SAVEPOINT active_record_1
3017
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:01:20.046185"], ["ends_at", "2016-02-27 20:01:20.046403"], ["created_at", "2015-02-27 20:01:20.048351"], ["updated_at", "2015-02-27 20:01:20.048351"]]
3018
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3019
+  (0.1ms) SAVEPOINT active_record_1
3020
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:01:20.052232"], ["ends_at", "2015-02-27 19:01:20.052413"], ["created_at", "2015-02-27 20:01:20.054195"], ["updated_at", "2015-02-27 20:01:20.054195"]]
3021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3022
+  (0.2ms) rollback transaction
3023
+  (0.1ms) begin transaction
3024
+ -----------------------------------------
3025
+ ActsAsIntervalTest: test_intervals_before
3026
+ -----------------------------------------
3027
+  (0.1ms) SAVEPOINT active_record_1
3028
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:01:20.059563"], ["ends_at", "2015-02-20 20:01:20.059757"], ["created_at", "2015-02-27 20:01:20.061660"], ["updated_at", "2015-02-27 20:01:20.061660"]]
3029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3030
+  (0.1ms) SAVEPOINT active_record_1
3031
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:01:20.065855"], ["ends_at", "2014-02-27 20:01:20.066076"], ["created_at", "2015-02-27 20:01:20.068070"], ["updated_at", "2015-02-27 20:01:20.068070"]]
3032
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3033
+  (0.1ms) SAVEPOINT active_record_1
3034
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:01:20.072140"], ["ends_at", "2016-02-27 20:01:20.072334"], ["created_at", "2015-02-27 20:01:20.074185"], ["updated_at", "2015-02-27 20:01:20.074185"]]
3035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3036
+  (0.1ms) SAVEPOINT active_record_1
3037
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:01:20.077936"], ["ends_at", "2016-02-27 20:01:20.078141"], ["created_at", "2015-02-27 20:01:20.080048"], ["updated_at", "2015-02-27 20:01:20.080048"]]
3038
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3039
+  (0.1ms) SAVEPOINT active_record_1
3040
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:01:20.084073"], ["ends_at", "2015-02-27 19:01:20.084261"], ["created_at", "2015-02-27 20:01:20.086085"], ["updated_at", "2015-02-27 20:01:20.086085"]]
3041
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3042
+  (0.2ms) rollback transaction
3043
+  (0.1ms) begin transaction
3044
+ ----------------------------------------------------
3045
+ ActsAsIntervalTest: test_overlapping_interval_method
3046
+ ----------------------------------------------------
3047
+  (0.1ms) rollback transaction
3048
+  (0.1ms) begin transaction
3049
+ ---------------------------------------------
3050
+ ActsAsIntervalTest: test_past_interval_method
3051
+ ---------------------------------------------
3052
+  (0.1ms) rollback transaction
3053
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3054
+  (123.9ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3055
+  (102.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3056
+  (0.1ms) select sqlite_version(*)
3057
+  (121.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3058
+  (0.2ms) SELECT version FROM "schema_migrations"
3059
+  (121.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3060
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3061
+  (0.2ms) begin transaction
3062
+ -----------------------------------------------
3063
+ ActsAsIntervalTest: test_future_interval_method
3064
+ -----------------------------------------------
3065
+  (0.1ms) rollback transaction
3066
+  (0.0ms) begin transaction
3067
+ -----------------------------------------------
3068
+ ActsAsIntervalTest: test_intersecting_intervals
3069
+ -----------------------------------------------
3070
+  (0.0ms) SAVEPOINT active_record_1
3071
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:07:19.769647"], ["ends_at", "2015-02-28 20:07:19.769788"], ["created_at", "2015-02-27 20:07:19.773084"], ["updated_at", "2015-02-27 20:07:19.773084"]]
3072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3073
+  (0.0ms) SAVEPOINT active_record_1
3074
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:07:19.777091"], ["ends_at", "2015-01-27 20:07:19.777180"], ["created_at", "2015-02-27 20:07:19.777966"], ["updated_at", "2015-02-27 20:07:19.777966"]]
3075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3076
+  (0.0ms) SAVEPOINT active_record_1
3077
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 20:07:19.779087"], ["ends_at", "2017-02-27 20:07:19.779167"], ["created_at", "2015-02-27 20:07:19.779757"], ["updated_at", "2015-02-27 20:07:19.779757"]]
3078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3079
+  (0.0ms) SAVEPOINT active_record_1
3080
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:07:19.781067"], ["ends_at", "2015-03-27 20:07:19.781133"], ["created_at", "2015-02-27 20:07:19.782076"], ["updated_at", "2015-02-27 20:07:19.782076"]]
3081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3082
+  (0.1ms) rollback transaction
3083
+  (0.0ms) begin transaction
3084
+ ----------------------------------------
3085
+ ActsAsIntervalTest: test_intervals_after
3086
+ ----------------------------------------
3087
+  (0.0ms) SAVEPOINT active_record_1
3088
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:07:19.783819"], ["ends_at", "2015-02-20 20:07:19.783879"], ["created_at", "2015-02-27 20:07:19.784255"], ["updated_at", "2015-02-27 20:07:19.784255"]]
3089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3090
+  (0.0ms) SAVEPOINT active_record_1
3091
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:07:19.785359"], ["ends_at", "2014-02-27 20:07:19.785407"], ["created_at", "2015-02-27 20:07:19.785970"], ["updated_at", "2015-02-27 20:07:19.785970"]]
3092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3093
+  (0.0ms) SAVEPOINT active_record_1
3094
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:07:19.786821"], ["ends_at", "2016-02-27 20:07:19.786869"], ["created_at", "2015-02-27 20:07:19.787196"], ["updated_at", "2015-02-27 20:07:19.787196"]]
3095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3096
+  (0.0ms) SAVEPOINT active_record_1
3097
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:07:19.788230"], ["ends_at", "2016-02-27 20:07:19.788294"], ["created_at", "2015-02-27 20:07:19.788892"], ["updated_at", "2015-02-27 20:07:19.788892"]]
3098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3099
+  (0.0ms) SAVEPOINT active_record_1
3100
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:07:19.789896"], ["ends_at", "2015-02-27 19:07:19.789941"], ["created_at", "2015-02-27 20:07:19.790401"], ["updated_at", "2015-02-27 20:07:19.790401"]]
3101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3102
+  (0.1ms) rollback transaction
3103
+  (0.0ms) begin transaction
3104
+ -----------------------------------------
3105
+ ActsAsIntervalTest: test_intervals_before
3106
+ -----------------------------------------
3107
+  (0.0ms) SAVEPOINT active_record_1
3108
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:07:19.791733"], ["ends_at", "2015-02-20 20:07:19.792152"], ["created_at", "2015-02-27 20:07:19.792642"], ["updated_at", "2015-02-27 20:07:19.792642"]]
3109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3110
+  (0.2ms) SAVEPOINT active_record_1
3111
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:07:19.793734"], ["ends_at", "2014-02-27 20:07:19.793780"], ["created_at", "2015-02-27 20:07:19.794274"], ["updated_at", "2015-02-27 20:07:19.794274"]]
3112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3113
+  (0.0ms) SAVEPOINT active_record_1
3114
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:07:19.795120"], ["ends_at", "2016-02-27 20:07:19.795166"], ["created_at", "2015-02-27 20:07:19.795484"], ["updated_at", "2015-02-27 20:07:19.795484"]]
3115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3116
+  (0.0ms) SAVEPOINT active_record_1
3117
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:07:19.796426"], ["ends_at", "2016-02-27 20:07:19.796471"], ["created_at", "2015-02-27 20:07:19.796782"], ["updated_at", "2015-02-27 20:07:19.796782"]]
3118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3119
+  (0.0ms) SAVEPOINT active_record_1
3120
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:07:19.797575"], ["ends_at", "2015-02-27 19:07:19.797618"], ["created_at", "2015-02-27 20:07:19.798070"], ["updated_at", "2015-02-27 20:07:19.798070"]]
3121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3122
+  (0.1ms) rollback transaction
3123
+  (0.0ms) begin transaction
3124
+ ----------------------------------------------------
3125
+ ActsAsIntervalTest: test_overlapping_interval_method
3126
+ ----------------------------------------------------
3127
+  (0.0ms) rollback transaction
3128
+  (0.0ms) begin transaction
3129
+ ---------------------------------------------
3130
+ ActsAsIntervalTest: test_past_interval_method
3131
+ ---------------------------------------------
3132
+  (0.0ms) rollback transaction
3133
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3134
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3135
+  (0.2ms) begin transaction
3136
+ -----------------------------------------------
3137
+ ActsAsIntervalTest: test_future_interval_method
3138
+ -----------------------------------------------
3139
+  (0.1ms) rollback transaction
3140
+  (0.1ms) begin transaction
3141
+ -----------------------------------------------
3142
+ ActsAsIntervalTest: test_intersecting_intervals
3143
+ -----------------------------------------------
3144
+  (0.1ms) SAVEPOINT active_record_1
3145
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:08:04.711761"], ["ends_at", "2015-02-28 20:08:04.712101"], ["created_at", "2015-02-27 20:08:04.715704"], ["updated_at", "2015-02-27 20:08:04.715704"]]
3146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3147
+  (0.1ms) SAVEPOINT active_record_1
3148
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:08:04.721921"], ["ends_at", "2015-01-27 20:08:04.722183"], ["created_at", "2015-02-27 20:08:04.724731"], ["updated_at", "2015-02-27 20:08:04.724731"]]
3149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3150
+  (0.1ms) SAVEPOINT active_record_1
3151
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 20:08:04.730274"], ["ends_at", "2017-02-27 20:08:04.730555"], ["created_at", "2015-02-27 20:08:04.732869"], ["updated_at", "2015-02-27 20:08:04.732869"]]
3152
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3153
+  (0.1ms) SAVEPOINT active_record_1
3154
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:08:04.737883"], ["ends_at", "2015-03-27 20:08:04.738270"], ["created_at", "2015-02-27 20:08:04.740602"], ["updated_at", "2015-02-27 20:08:04.740602"]]
3155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3156
+  (0.2ms) rollback transaction
3157
+  (0.1ms) begin transaction
3158
+ ----------------------------------------
3159
+ ActsAsIntervalTest: test_intervals_after
3160
+ ----------------------------------------
3161
+  (0.1ms) SAVEPOINT active_record_1
3162
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:08:04.746957"], ["ends_at", "2015-02-20 20:08:04.747201"], ["created_at", "2015-02-27 20:08:04.749458"], ["updated_at", "2015-02-27 20:08:04.749458"]]
3163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3164
+  (0.1ms) SAVEPOINT active_record_1
3165
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:08:04.754107"], ["ends_at", "2014-02-27 20:08:04.754346"], ["created_at", "2015-02-27 20:08:04.756562"], ["updated_at", "2015-02-27 20:08:04.756562"]]
3166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3167
+  (0.1ms) SAVEPOINT active_record_1
3168
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:08:04.761240"], ["ends_at", "2016-02-27 20:08:04.761465"], ["created_at", "2015-02-27 20:08:04.763700"], ["updated_at", "2015-02-27 20:08:04.763700"]]
3169
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3170
+  (0.1ms) SAVEPOINT active_record_1
3171
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:08:04.768318"], ["ends_at", "2016-02-27 20:08:04.768563"], ["created_at", "2015-02-27 20:08:04.770915"], ["updated_at", "2015-02-27 20:08:04.770915"]]
3172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3173
+  (0.1ms) SAVEPOINT active_record_1
3174
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:08:04.775401"], ["ends_at", "2015-02-27 19:08:04.775613"], ["created_at", "2015-02-27 20:08:04.777623"], ["updated_at", "2015-02-27 20:08:04.777623"]]
3175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3176
+  (0.2ms) rollback transaction
3177
+  (0.1ms) begin transaction
3178
+ -----------------------------------------
3179
+ ActsAsIntervalTest: test_intervals_before
3180
+ -----------------------------------------
3181
+  (0.1ms) SAVEPOINT active_record_1
3182
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:08:04.783879"], ["ends_at", "2015-02-20 20:08:04.784130"], ["created_at", "2015-02-27 20:08:04.786402"], ["updated_at", "2015-02-27 20:08:04.786402"]]
3183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3184
+  (0.1ms) SAVEPOINT active_record_1
3185
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:08:04.791262"], ["ends_at", "2014-02-27 20:08:04.791517"], ["created_at", "2015-02-27 20:08:04.793905"], ["updated_at", "2015-02-27 20:08:04.793905"]]
3186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3187
+  (0.1ms) SAVEPOINT active_record_1
3188
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:08:04.798642"], ["ends_at", "2016-02-27 20:08:04.798882"], ["created_at", "2015-02-27 20:08:04.801130"], ["updated_at", "2015-02-27 20:08:04.801130"]]
3189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3190
+  (0.1ms) SAVEPOINT active_record_1
3191
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:08:04.805967"], ["ends_at", "2016-02-27 20:08:04.806231"], ["created_at", "2015-02-27 20:08:04.808749"], ["updated_at", "2015-02-27 20:08:04.808749"]]
3192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3193
+  (0.1ms) SAVEPOINT active_record_1
3194
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:08:04.819566"], ["ends_at", "2015-02-27 19:08:04.819809"], ["created_at", "2015-02-27 20:08:04.821901"], ["updated_at", "2015-02-27 20:08:04.821901"]]
3195
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3196
+  (0.3ms) rollback transaction
3197
+  (0.1ms) begin transaction
3198
+ ----------------------------------------------------
3199
+ ActsAsIntervalTest: test_overlapping_interval_method
3200
+ ----------------------------------------------------
3201
+  (0.1ms) rollback transaction
3202
+  (0.1ms) begin transaction
3203
+ ---------------------------------------------
3204
+ ActsAsIntervalTest: test_past_interval_method
3205
+ ---------------------------------------------
3206
+  (0.1ms) rollback transaction
3207
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3208
+  (116.2ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3209
+  (96.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3210
+  (0.2ms) select sqlite_version(*)
3211
+  (107.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3212
+  (0.2ms) SELECT version FROM "schema_migrations"
3213
+  (114.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3214
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3215
+  (0.1ms) begin transaction
3216
+ -----------------------------------------------
3217
+ ActsAsIntervalTest: test_future_interval_method
3218
+ -----------------------------------------------
3219
+  (0.0ms) rollback transaction
3220
+  (0.0ms) begin transaction
3221
+ -----------------------------------------------
3222
+ ActsAsIntervalTest: test_intersecting_intervals
3223
+ -----------------------------------------------
3224
+  (0.0ms) SAVEPOINT active_record_1
3225
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:21:19.826617"], ["ends_at", "2015-02-28 20:21:19.826755"], ["created_at", "2015-02-27 20:21:19.832030"], ["updated_at", "2015-02-27 20:21:19.832030"]]
3226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3227
+  (0.0ms) SAVEPOINT active_record_1
3228
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:21:19.833960"], ["ends_at", "2015-01-27 20:21:19.834023"], ["created_at", "2015-02-27 20:21:19.834367"], ["updated_at", "2015-02-27 20:21:19.834367"]]
3229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3230
+  (0.0ms) SAVEPOINT active_record_1
3231
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 20:21:19.835191"], ["ends_at", "2017-02-27 20:21:19.835258"], ["created_at", "2015-02-27 20:21:19.835619"], ["updated_at", "2015-02-27 20:21:19.835619"]]
3232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3233
+  (0.0ms) SAVEPOINT active_record_1
3234
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:21:19.836257"], ["ends_at", "2015-03-27 20:21:19.836303"], ["created_at", "2015-02-27 20:21:19.836615"], ["updated_at", "2015-02-27 20:21:19.836615"]]
3235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3236
+  (0.1ms) rollback transaction
3237
+  (0.0ms) begin transaction
3238
+ ----------------------------------------
3239
+ ActsAsIntervalTest: test_intervals_after
3240
+ ----------------------------------------
3241
+  (0.0ms) SAVEPOINT active_record_1
3242
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:21:19.837783"], ["ends_at", "2015-02-20 20:21:19.837836"], ["created_at", "2015-02-27 20:21:19.838177"], ["updated_at", "2015-02-27 20:21:19.838177"]]
3243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3244
+  (0.0ms) SAVEPOINT active_record_1
3245
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:21:19.838965"], ["ends_at", "2014-02-27 20:21:19.839014"], ["created_at", "2015-02-27 20:21:19.839365"], ["updated_at", "2015-02-27 20:21:19.839365"]]
3246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3247
+  (0.0ms) SAVEPOINT active_record_1
3248
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:21:19.840101"], ["ends_at", "2016-02-27 20:21:19.840147"], ["created_at", "2015-02-27 20:21:19.840466"], ["updated_at", "2015-02-27 20:21:19.840466"]]
3249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3250
+  (0.0ms) SAVEPOINT active_record_1
3251
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:21:19.841095"], ["ends_at", "2016-02-27 20:21:19.841139"], ["created_at", "2015-02-27 20:21:19.841460"], ["updated_at", "2015-02-27 20:21:19.841460"]]
3252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3253
+  (0.0ms) SAVEPOINT active_record_1
3254
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:21:19.842052"], ["ends_at", "2015-02-27 19:21:19.842095"], ["created_at", "2015-02-27 20:21:19.842390"], ["updated_at", "2015-02-27 20:21:19.842390"]]
3255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3256
+  (0.1ms) rollback transaction
3257
+  (0.0ms) begin transaction
3258
+ -----------------------------------------
3259
+ ActsAsIntervalTest: test_intervals_before
3260
+ -----------------------------------------
3261
+  (0.0ms) SAVEPOINT active_record_1
3262
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:21:19.843427"], ["ends_at", "2015-02-20 20:21:19.843506"], ["created_at", "2015-02-27 20:21:19.843860"], ["updated_at", "2015-02-27 20:21:19.843860"]]
3263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3264
+  (0.0ms) SAVEPOINT active_record_1
3265
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:21:19.844498"], ["ends_at", "2014-02-27 20:21:19.844543"], ["created_at", "2015-02-27 20:21:19.844842"], ["updated_at", "2015-02-27 20:21:19.844842"]]
3266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3267
+  (0.0ms) SAVEPOINT active_record_1
3268
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:21:19.845504"], ["ends_at", "2016-02-27 20:21:19.845549"], ["created_at", "2015-02-27 20:21:19.845866"], ["updated_at", "2015-02-27 20:21:19.845866"]]
3269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3270
+  (0.0ms) SAVEPOINT active_record_1
3271
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:21:19.846482"], ["ends_at", "2016-02-27 20:21:19.846526"], ["created_at", "2015-02-27 20:21:19.846845"], ["updated_at", "2015-02-27 20:21:19.846845"]]
3272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3273
+  (0.0ms) SAVEPOINT active_record_1
3274
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:21:19.847447"], ["ends_at", "2015-02-27 19:21:19.847490"], ["created_at", "2015-02-27 20:21:19.847760"], ["updated_at", "2015-02-27 20:21:19.847760"]]
3275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3276
+  (0.1ms) rollback transaction
3277
+  (0.0ms) begin transaction
3278
+ ----------------------------------------------------
3279
+ ActsAsIntervalTest: test_overlapping_interval_method
3280
+ ----------------------------------------------------
3281
+  (0.0ms) rollback transaction
3282
+  (0.0ms) begin transaction
3283
+ ---------------------------------------------
3284
+ ActsAsIntervalTest: test_past_interval_method
3285
+ ---------------------------------------------
3286
+  (0.0ms) rollback transaction
3287
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3288
+  (114.2ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3289
+  (100.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3290
+  (0.4ms) select sqlite_version(*)
3291
+  (119.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3292
+  (0.5ms) SELECT version FROM "schema_migrations"
3293
+  (120.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3294
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3295
+  (0.2ms) begin transaction
3296
+ -----------------------------------------------
3297
+ ActsAsIntervalTest: test_future_interval_method
3298
+ -----------------------------------------------
3299
+  (0.2ms) rollback transaction
3300
+  (0.2ms) begin transaction
3301
+ -----------------------------------------------
3302
+ ActsAsIntervalTest: test_intersecting_intervals
3303
+ -----------------------------------------------
3304
+  (0.2ms) SAVEPOINT active_record_1
3305
+ SQL (0.5ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:33:42.059881"], ["ends_at", "2015-02-28 20:33:42.060313"], ["created_at", "2015-02-27 20:33:42.074344"], ["updated_at", "2015-02-27 20:33:42.074344"]]
3306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3307
+  (0.2ms) SAVEPOINT active_record_1
3308
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:33:42.082319"], ["ends_at", "2015-01-27 20:33:42.082629"], ["created_at", "2015-02-27 20:33:42.085518"], ["updated_at", "2015-02-27 20:33:42.085518"]]
3309
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3310
+  (0.1ms) SAVEPOINT active_record_1
3311
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 20:33:42.091314"], ["ends_at", "2017-02-27 20:33:42.091609"], ["created_at", "2015-02-27 20:33:42.094186"], ["updated_at", "2015-02-27 20:33:42.094186"]]
3312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3313
+  (0.1ms) SAVEPOINT active_record_1
3314
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:33:42.099434"], ["ends_at", "2015-03-27 20:33:42.099693"], ["created_at", "2015-02-27 20:33:42.102242"], ["updated_at", "2015-02-27 20:33:42.102242"]]
3315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3316
+  (0.2ms) rollback transaction
3317
+  (0.1ms) begin transaction
3318
+ ----------------------------------------
3319
+ ActsAsIntervalTest: test_intervals_after
3320
+ ----------------------------------------
3321
+  (0.1ms) SAVEPOINT active_record_1
3322
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:33:42.109252"], ["ends_at", "2015-02-20 20:33:42.109526"], ["created_at", "2015-02-27 20:33:42.112004"], ["updated_at", "2015-02-27 20:33:42.112004"]]
3323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3324
+  (0.1ms) SAVEPOINT active_record_1
3325
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:33:42.117119"], ["ends_at", "2014-02-27 20:33:42.117397"], ["created_at", "2015-02-27 20:33:42.119874"], ["updated_at", "2015-02-27 20:33:42.119874"]]
3326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3327
+  (0.1ms) SAVEPOINT active_record_1
3328
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:33:42.125023"], ["ends_at", "2016-02-27 20:33:42.125270"], ["created_at", "2015-02-27 20:33:42.127752"], ["updated_at", "2015-02-27 20:33:42.127752"]]
3329
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3330
+  (0.1ms) SAVEPOINT active_record_1
3331
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:33:42.132885"], ["ends_at", "2016-02-27 20:33:42.133134"], ["created_at", "2015-02-27 20:33:42.135706"], ["updated_at", "2015-02-27 20:33:42.135706"]]
3332
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3333
+  (0.1ms) SAVEPOINT active_record_1
3334
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:33:42.140649"], ["ends_at", "2015-02-27 19:33:42.140903"], ["created_at", "2015-02-27 20:33:42.143171"], ["updated_at", "2015-02-27 20:33:42.143171"]]
3335
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3336
+  (0.2ms) rollback transaction
3337
+  (0.1ms) begin transaction
3338
+ -----------------------------------------
3339
+ ActsAsIntervalTest: test_intervals_before
3340
+ -----------------------------------------
3341
+  (0.1ms) SAVEPOINT active_record_1
3342
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:33:42.150194"], ["ends_at", "2015-02-20 20:33:42.150494"], ["created_at", "2015-02-27 20:33:42.152945"], ["updated_at", "2015-02-27 20:33:42.152945"]]
3343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3344
+  (0.1ms) SAVEPOINT active_record_1
3345
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:33:42.157888"], ["ends_at", "2014-02-27 20:33:42.158166"], ["created_at", "2015-02-27 20:33:42.160537"], ["updated_at", "2015-02-27 20:33:42.160537"]]
3346
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3347
+  (0.1ms) SAVEPOINT active_record_1
3348
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:33:42.165524"], ["ends_at", "2016-02-27 20:33:42.165779"], ["created_at", "2015-02-27 20:33:42.168170"], ["updated_at", "2015-02-27 20:33:42.168170"]]
3349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3350
+  (0.1ms) SAVEPOINT active_record_1
3351
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:33:42.172884"], ["ends_at", "2016-02-27 20:33:42.173131"], ["created_at", "2015-02-27 20:33:42.175370"], ["updated_at", "2015-02-27 20:33:42.175370"]]
3352
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3353
+  (0.1ms) SAVEPOINT active_record_1
3354
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:33:42.186106"], ["ends_at", "2015-02-27 19:33:42.186368"], ["created_at", "2015-02-27 20:33:42.188496"], ["updated_at", "2015-02-27 20:33:42.188496"]]
3355
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3356
+  (0.2ms) rollback transaction
3357
+  (0.2ms) begin transaction
3358
+ ----------------------------------------------------
3359
+ ActsAsIntervalTest: test_overlapping_interval_method
3360
+ ----------------------------------------------------
3361
+  (0.1ms) rollback transaction
3362
+  (0.1ms) begin transaction
3363
+ ---------------------------------------------
3364
+ ActsAsIntervalTest: test_past_interval_method
3365
+ ---------------------------------------------
3366
+  (0.1ms) rollback transaction
3367
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3368
+  (132.6ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3369
+  (128.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3370
+  (0.1ms) select sqlite_version(*)
3371
+  (119.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3372
+  (0.1ms) SELECT version FROM "schema_migrations"
3373
+  (100.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3374
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3375
+  (0.1ms) begin transaction
3376
+ -----------------------------------------------
3377
+ ActsAsIntervalTest: test_future_interval_method
3378
+ -----------------------------------------------
3379
+  (0.0ms) rollback transaction
3380
+  (0.0ms) begin transaction
3381
+ -----------------------------------------------
3382
+ ActsAsIntervalTest: test_intersecting_intervals
3383
+ -----------------------------------------------
3384
+  (0.1ms) SAVEPOINT active_record_1
3385
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:34:55.437973"], ["ends_at", "2015-02-28 20:34:55.438114"], ["created_at", "2015-02-27 20:34:55.449428"], ["updated_at", "2015-02-27 20:34:55.449428"]]
3386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3387
+  (0.0ms) SAVEPOINT active_record_1
3388
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:34:55.453204"], ["ends_at", "2015-01-27 20:34:55.453276"], ["created_at", "2015-02-27 20:34:55.453678"], ["updated_at", "2015-02-27 20:34:55.453678"]]
3389
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3390
+  (0.0ms) SAVEPOINT active_record_1
3391
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 20:34:55.454912"], ["ends_at", "2017-02-27 20:34:55.454961"], ["created_at", "2015-02-27 20:34:55.455284"], ["updated_at", "2015-02-27 20:34:55.455284"]]
3392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3393
+  (0.0ms) SAVEPOINT active_record_1
3394
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:34:55.456217"], ["ends_at", "2015-03-27 20:34:55.456263"], ["created_at", "2015-02-27 20:34:55.456581"], ["updated_at", "2015-02-27 20:34:55.456581"]]
3395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3396
+  (0.1ms) rollback transaction
3397
+  (0.0ms) begin transaction
3398
+ ----------------------------------------
3399
+ ActsAsIntervalTest: test_intervals_after
3400
+ ----------------------------------------
3401
+  (0.0ms) SAVEPOINT active_record_1
3402
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:34:55.458041"], ["ends_at", "2015-02-20 20:34:55.458091"], ["created_at", "2015-02-27 20:34:55.458626"], ["updated_at", "2015-02-27 20:34:55.458626"]]
3403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3404
+  (0.0ms) SAVEPOINT active_record_1
3405
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:34:55.459730"], ["ends_at", "2014-02-27 20:34:55.459799"], ["created_at", "2015-02-27 20:34:55.460416"], ["updated_at", "2015-02-27 20:34:55.460416"]]
3406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3407
+  (0.1ms) SAVEPOINT active_record_1
3408
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:34:55.461597"], ["ends_at", "2016-02-27 20:34:55.461669"], ["created_at", "2015-02-27 20:34:55.462234"], ["updated_at", "2015-02-27 20:34:55.462234"]]
3409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3410
+  (0.0ms) SAVEPOINT active_record_1
3411
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:34:55.463806"], ["ends_at", "2016-02-27 20:34:55.464080"], ["created_at", "2015-02-27 20:34:55.464484"], ["updated_at", "2015-02-27 20:34:55.464484"]]
3412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3413
+  (0.0ms) SAVEPOINT active_record_1
3414
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:34:55.465750"], ["ends_at", "2015-02-27 19:34:55.465797"], ["created_at", "2015-02-27 20:34:55.466151"], ["updated_at", "2015-02-27 20:34:55.466151"]]
3415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3416
+  (0.1ms) rollback transaction
3417
+  (0.0ms) begin transaction
3418
+ -----------------------------------------
3419
+ ActsAsIntervalTest: test_intervals_before
3420
+ -----------------------------------------
3421
+  (0.0ms) SAVEPOINT active_record_1
3422
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:34:55.468123"], ["ends_at", "2015-02-20 20:34:55.468207"], ["created_at", "2015-02-27 20:34:55.468758"], ["updated_at", "2015-02-27 20:34:55.468758"]]
3423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3424
+  (0.0ms) SAVEPOINT active_record_1
3425
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:34:55.469614"], ["ends_at", "2014-02-27 20:34:55.469661"], ["created_at", "2015-02-27 20:34:55.470155"], ["updated_at", "2015-02-27 20:34:55.470155"]]
3426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3427
+  (0.2ms) SAVEPOINT active_record_1
3428
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:34:55.471053"], ["ends_at", "2016-02-27 20:34:55.471100"], ["created_at", "2015-02-27 20:34:55.471576"], ["updated_at", "2015-02-27 20:34:55.471576"]]
3429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3430
+  (0.2ms) SAVEPOINT active_record_1
3431
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:34:55.472349"], ["ends_at", "2016-02-27 20:34:55.472395"], ["created_at", "2015-02-27 20:34:55.472877"], ["updated_at", "2015-02-27 20:34:55.472877"]]
3432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3433
+  (0.0ms) SAVEPOINT active_record_1
3434
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:34:55.473666"], ["ends_at", "2015-02-27 19:34:55.473709"], ["created_at", "2015-02-27 20:34:55.474002"], ["updated_at", "2015-02-27 20:34:55.474002"]]
3435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3436
+  (0.1ms) rollback transaction
3437
+  (0.0ms) begin transaction
3438
+ ----------------------------------------------------
3439
+ ActsAsIntervalTest: test_overlapping_interval_method
3440
+ ----------------------------------------------------
3441
+  (0.0ms) rollback transaction
3442
+  (0.0ms) begin transaction
3443
+ ---------------------------------------------
3444
+ ActsAsIntervalTest: test_past_interval_method
3445
+ ---------------------------------------------
3446
+  (0.0ms) rollback transaction
3447
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3448
+  (141.1ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3449
+  (132.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3450
+  (0.2ms) select sqlite_version(*)
3451
+  (155.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3452
+  (0.3ms) SELECT version FROM "schema_migrations"
3453
+  (132.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3454
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3455
+  (0.2ms) begin transaction
3456
+ -----------------------------------------------
3457
+ ActsAsIntervalTest: test_future_interval_method
3458
+ -----------------------------------------------
3459
+  (0.1ms) rollback transaction
3460
+  (1.1ms) begin transaction
3461
+ -----------------------------------------------
3462
+ ActsAsIntervalTest: test_intersecting_intervals
3463
+ -----------------------------------------------
3464
+  (0.0ms) SAVEPOINT active_record_1
3465
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:52:19.109252"], ["ends_at", "2015-02-28 20:52:19.109529"], ["created_at", "2015-02-27 20:52:19.112865"], ["updated_at", "2015-02-27 20:52:19.112865"]]
3466
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3467
+  (0.0ms) SAVEPOINT active_record_1
3468
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:52:19.117156"], ["ends_at", "2015-01-27 20:52:19.117241"], ["created_at", "2015-02-27 20:52:19.118396"], ["updated_at", "2015-02-27 20:52:19.118396"]]
3469
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3470
+  (0.0ms) SAVEPOINT active_record_1
3471
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2016-02-27 20:52:19.119873"], ["ends_at", "2017-02-27 20:52:19.119939"], ["created_at", "2015-02-27 20:52:19.120495"], ["updated_at", "2015-02-27 20:52:19.120495"]]
3472
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3473
+  (0.0ms) SAVEPOINT active_record_1
3474
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:52:19.121348"], ["ends_at", "2015-03-27 20:52:19.121396"], ["created_at", "2015-02-27 20:52:19.121954"], ["updated_at", "2015-02-27 20:52:19.121954"]]
3475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3476
+ Interval Load (0.3ms) SELECT "intervals".* FROM "intervals" WHERE (DATEDIFF(starts_at, '2015-02-28 20:52:19.109529') * DATEDIFF('2015-02-26 20:52:19.109252', ends_at) >= 0) AND ("intervals"."id" != ?) [["id", 1]]
3477
+ SQLite3::SQLException: no such function: DATEDIFF: SELECT "intervals".* FROM "intervals" WHERE (DATEDIFF(starts_at, '2015-02-28 20:52:19.109529') * DATEDIFF('2015-02-26 20:52:19.109252', ends_at) >= 0) AND ("intervals"."id" != ?)
3478
+  (0.1ms) rollback transaction
3479
+  (0.0ms) begin transaction
3480
+ ----------------------------------------
3481
+ ActsAsIntervalTest: test_intervals_after
3482
+ ----------------------------------------
3483
+  (0.0ms) SAVEPOINT active_record_1
3484
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:52:19.126869"], ["ends_at", "2015-02-20 20:52:19.126952"], ["created_at", "2015-02-27 20:52:19.127551"], ["updated_at", "2015-02-27 20:52:19.127551"]]
3485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3486
+  (0.0ms) SAVEPOINT active_record_1
3487
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:52:19.128460"], ["ends_at", "2014-02-27 20:52:19.128668"], ["created_at", "2015-02-27 20:52:19.128994"], ["updated_at", "2015-02-27 20:52:19.128994"]]
3488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3489
+  (0.1ms) SAVEPOINT active_record_1
3490
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:52:19.129817"], ["ends_at", "2016-02-27 20:52:19.130206"], ["created_at", "2015-02-27 20:52:19.130571"], ["updated_at", "2015-02-27 20:52:19.130571"]]
3491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3492
+  (0.0ms) SAVEPOINT active_record_1
3493
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:52:19.131334"], ["ends_at", "2016-02-27 20:52:19.131380"], ["created_at", "2015-02-27 20:52:19.131894"], ["updated_at", "2015-02-27 20:52:19.131894"]]
3494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3495
+  (0.0ms) SAVEPOINT active_record_1
3496
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:52:19.132780"], ["ends_at", "2015-02-27 19:52:19.132997"], ["created_at", "2015-02-27 20:52:19.133292"], ["updated_at", "2015-02-27 20:52:19.133292"]]
3497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3498
+  (0.1ms) rollback transaction
3499
+  (0.2ms) begin transaction
3500
+ -----------------------------------------
3501
+ ActsAsIntervalTest: test_intervals_before
3502
+ -----------------------------------------
3503
+  (0.0ms) SAVEPOINT active_record_1
3504
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:52:19.134688"], ["ends_at", "2015-02-20 20:52:19.134737"], ["created_at", "2015-02-27 20:52:19.135060"], ["updated_at", "2015-02-27 20:52:19.135060"]]
3505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3506
+  (0.0ms) SAVEPOINT active_record_1
3507
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:52:19.136214"], ["ends_at", "2014-02-27 20:52:19.136262"], ["created_at", "2015-02-27 20:52:19.136575"], ["updated_at", "2015-02-27 20:52:19.136575"]]
3508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3509
+  (0.0ms) SAVEPOINT active_record_1
3510
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:52:19.137434"], ["ends_at", "2016-02-27 20:52:19.137646"], ["created_at", "2015-02-27 20:52:19.137967"], ["updated_at", "2015-02-27 20:52:19.137967"]]
3511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3512
+  (0.0ms) SAVEPOINT active_record_1
3513
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:52:19.138784"], ["ends_at", "2016-02-27 20:52:19.138830"], ["created_at", "2015-02-27 20:52:19.139305"], ["updated_at", "2015-02-27 20:52:19.139305"]]
3514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3515
+  (0.0ms) SAVEPOINT active_record_1
3516
+ SQL (0.4ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:52:19.140072"], ["ends_at", "2015-02-27 19:52:19.140115"], ["created_at", "2015-02-27 20:52:19.140561"], ["updated_at", "2015-02-27 20:52:19.140561"]]
3517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3518
+  (0.1ms) rollback transaction
3519
+  (0.0ms) begin transaction
3520
+ ----------------------------------------------------
3521
+ ActsAsIntervalTest: test_overlapping_interval_method
3522
+ ----------------------------------------------------
3523
+  (0.0ms) rollback transaction
3524
+  (0.2ms) begin transaction
3525
+ ---------------------------------------------
3526
+ ActsAsIntervalTest: test_past_interval_method
3527
+ ---------------------------------------------
3528
+  (0.0ms) rollback transaction
3529
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3530
+  (251.5ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3531
+  (234.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3532
+  (0.2ms) select sqlite_version(*)
3533
+  (253.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3534
+  (0.1ms) SELECT version FROM "schema_migrations"
3535
+  (123.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3536
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3537
+  (0.1ms) begin transaction
3538
+ -----------------------------------------------
3539
+ ActsAsIntervalTest: test_future_interval_method
3540
+ -----------------------------------------------
3541
+  (0.1ms) rollback transaction
3542
+  (0.0ms) begin transaction
3543
+ ----------------------------------------
3544
+ ActsAsIntervalTest: test_intervals_after
3545
+ ----------------------------------------
3546
+  (0.0ms) SAVEPOINT active_record_1
3547
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:53:03.521511"], ["ends_at", "2015-02-20 20:53:03.521659"], ["created_at", "2015-02-27 20:53:03.525151"], ["updated_at", "2015-02-27 20:53:03.525151"]]
3548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3549
+  (0.1ms) SAVEPOINT active_record_1
3550
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:53:03.529636"], ["ends_at", "2014-02-27 20:53:03.529740"], ["created_at", "2015-02-27 20:53:03.530263"], ["updated_at", "2015-02-27 20:53:03.530263"]]
3551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3552
+  (0.0ms) SAVEPOINT active_record_1
3553
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:53:03.532130"], ["ends_at", "2016-02-27 20:53:03.532230"], ["created_at", "2015-02-27 20:53:03.532770"], ["updated_at", "2015-02-27 20:53:03.532770"]]
3554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3555
+  (0.0ms) SAVEPOINT active_record_1
3556
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:53:03.533746"], ["ends_at", "2016-02-27 20:53:03.533963"], ["created_at", "2015-02-27 20:53:03.534310"], ["updated_at", "2015-02-27 20:53:03.534310"]]
3557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3558
+  (0.0ms) SAVEPOINT active_record_1
3559
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:53:03.535159"], ["ends_at", "2015-02-27 19:53:03.535394"], ["created_at", "2015-02-27 20:53:03.535699"], ["updated_at", "2015-02-27 20:53:03.535699"]]
3560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3561
+  (0.1ms) rollback transaction
3562
+  (0.0ms) begin transaction
3563
+ -----------------------------------------
3564
+ ActsAsIntervalTest: test_intervals_before
3565
+ -----------------------------------------
3566
+  (0.0ms) SAVEPOINT active_record_1
3567
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:53:03.537140"], ["ends_at", "2015-02-20 20:53:03.537191"], ["created_at", "2015-02-27 20:53:03.537536"], ["updated_at", "2015-02-27 20:53:03.537536"]]
3568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3569
+  (0.0ms) SAVEPOINT active_record_1
3570
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:53:03.538582"], ["ends_at", "2014-02-27 20:53:03.538636"], ["created_at", "2015-02-27 20:53:03.539124"], ["updated_at", "2015-02-27 20:53:03.539124"]]
3571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3572
+  (0.0ms) SAVEPOINT active_record_1
3573
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:53:03.539977"], ["ends_at", "2016-02-27 20:53:03.540025"], ["created_at", "2015-02-27 20:53:03.540526"], ["updated_at", "2015-02-27 20:53:03.540526"]]
3574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3575
+  (0.0ms) SAVEPOINT active_record_1
3576
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:53:03.541615"], ["ends_at", "2016-02-27 20:53:03.541665"], ["created_at", "2015-02-27 20:53:03.541989"], ["updated_at", "2015-02-27 20:53:03.541989"]]
3577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3578
+  (0.0ms) SAVEPOINT active_record_1
3579
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:53:03.542778"], ["ends_at", "2015-02-27 19:53:03.542974"], ["created_at", "2015-02-27 20:53:03.543275"], ["updated_at", "2015-02-27 20:53:03.543275"]]
3580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3581
+  (0.1ms) rollback transaction
3582
+  (0.0ms) begin transaction
3583
+ ----------------------------------------------------
3584
+ ActsAsIntervalTest: test_overlapping_interval_method
3585
+ ----------------------------------------------------
3586
+  (0.0ms) rollback transaction
3587
+  (0.0ms) begin transaction
3588
+ ---------------------------------------------
3589
+ ActsAsIntervalTest: test_past_interval_method
3590
+ ---------------------------------------------
3591
+  (0.0ms) rollback transaction
3592
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3593
+  (677.5ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3594
+  (146.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3595
+  (0.1ms) select sqlite_version(*)
3596
+  (155.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3597
+  (0.2ms) SELECT version FROM "schema_migrations"
3598
+  (177.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3599
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3600
+  (0.1ms) begin transaction
3601
+ -----------------------------------------------
3602
+ ActsAsIntervalTest: test_future_interval_method
3603
+ -----------------------------------------------
3604
+  (0.1ms) rollback transaction
3605
+  (0.1ms) begin transaction
3606
+ ----------------------------------------
3607
+ ActsAsIntervalTest: test_intervals_after
3608
+ ----------------------------------------
3609
+  (0.1ms) SAVEPOINT active_record_1
3610
+ SQL (0.4ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:53:08.913880"], ["ends_at", "2015-02-20 20:53:08.914098"], ["created_at", "2015-02-27 20:53:08.919026"], ["updated_at", "2015-02-27 20:53:08.919026"]]
3611
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3612
+  (0.1ms) SAVEPOINT active_record_1
3613
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:53:08.924895"], ["ends_at", "2014-02-27 20:53:08.925012"], ["created_at", "2015-02-27 20:53:08.926339"], ["updated_at", "2015-02-27 20:53:08.926339"]]
3614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3615
+  (0.1ms) SAVEPOINT active_record_1
3616
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:53:08.928927"], ["ends_at", "2016-02-27 20:53:08.929019"], ["created_at", "2015-02-27 20:53:08.929590"], ["updated_at", "2015-02-27 20:53:08.929590"]]
3617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3618
+  (0.1ms) SAVEPOINT active_record_1
3619
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:53:08.930954"], ["ends_at", "2016-02-27 20:53:08.931278"], ["created_at", "2015-02-27 20:53:08.931830"], ["updated_at", "2015-02-27 20:53:08.931830"]]
3620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3621
+  (0.1ms) SAVEPOINT active_record_1
3622
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:53:08.933132"], ["ends_at", "2015-02-27 19:53:08.933213"], ["created_at", "2015-02-27 20:53:08.933992"], ["updated_at", "2015-02-27 20:53:08.933992"]]
3623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3624
+  (0.1ms) rollback transaction
3625
+  (0.3ms) begin transaction
3626
+ -----------------------------------------
3627
+ ActsAsIntervalTest: test_intervals_before
3628
+ -----------------------------------------
3629
+  (0.1ms) SAVEPOINT active_record_1
3630
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 20:53:08.936346"], ["ends_at", "2015-02-20 20:53:08.936461"], ["created_at", "2015-02-27 20:53:08.937124"], ["updated_at", "2015-02-27 20:53:08.937124"]]
3631
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3632
+  (0.0ms) SAVEPOINT active_record_1
3633
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 20:53:08.938712"], ["ends_at", "2014-02-27 20:53:08.938791"], ["created_at", "2015-02-27 20:53:08.939308"], ["updated_at", "2015-02-27 20:53:08.939308"]]
3634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3635
+  (0.1ms) SAVEPOINT active_record_1
3636
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 20:53:08.940824"], ["ends_at", "2016-02-27 20:53:08.940903"], ["created_at", "2015-02-27 20:53:08.941672"], ["updated_at", "2015-02-27 20:53:08.941672"]]
3637
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3638
+  (0.1ms) SAVEPOINT active_record_1
3639
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 20:53:08.942954"], ["ends_at", "2016-02-27 20:53:08.943032"], ["created_at", "2015-02-27 20:53:08.943795"], ["updated_at", "2015-02-27 20:53:08.943795"]]
3640
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3641
+  (0.1ms) SAVEPOINT active_record_1
3642
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 20:53:08.945226"], ["ends_at", "2015-02-27 19:53:08.945299"], ["created_at", "2015-02-27 20:53:08.945998"], ["updated_at", "2015-02-27 20:53:08.945998"]]
3643
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3644
+  (0.1ms) rollback transaction
3645
+  (0.1ms) begin transaction
3646
+ ----------------------------------------------------
3647
+ ActsAsIntervalTest: test_overlapping_interval_method
3648
+ ----------------------------------------------------
3649
+  (0.0ms) rollback transaction
3650
+  (0.0ms) begin transaction
3651
+ ---------------------------------------------
3652
+ ActsAsIntervalTest: test_past_interval_method
3653
+ ---------------------------------------------
3654
+  (0.0ms) rollback transaction
3655
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3656
+  (118.0ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3657
+  (134.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3658
+  (0.1ms) select sqlite_version(*)
3659
+  (113.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3660
+  (0.1ms) SELECT version FROM "schema_migrations"
3661
+  (108.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3662
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
3663
+  (0.2ms) begin transaction
3664
+ -----------------------------------------------
3665
+ ActsAsIntervalTest: test_future_interval_method
3666
+ -----------------------------------------------
3667
+  (0.2ms) rollback transaction
3668
+  (0.1ms) begin transaction
3669
+ ----------------------------------------
3670
+ ActsAsIntervalTest: test_intervals_after
3671
+ ----------------------------------------
3672
+  (0.1ms) SAVEPOINT active_record_1
3673
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:00:29.031928"], ["ends_at", "2015-02-20 21:00:29.032626"], ["created_at", "2015-02-27 21:00:29.048627"], ["updated_at", "2015-02-27 21:00:29.048627"]]
3674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3675
+  (0.1ms) SAVEPOINT active_record_1
3676
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:00:29.059884"], ["ends_at", "2014-02-27 21:00:29.060147"], ["created_at", "2015-02-27 21:00:29.063204"], ["updated_at", "2015-02-27 21:00:29.063204"]]
3677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3678
+  (0.1ms) SAVEPOINT active_record_1
3679
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:00:29.067955"], ["ends_at", "2016-02-27 21:00:29.068218"], ["created_at", "2015-02-27 21:00:29.070738"], ["updated_at", "2015-02-27 21:00:29.070738"]]
3680
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3681
+  (0.1ms) SAVEPOINT active_record_1
3682
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:00:29.075451"], ["ends_at", "2016-02-27 21:00:29.075687"], ["created_at", "2015-02-27 21:00:29.079930"], ["updated_at", "2015-02-27 21:00:29.079930"]]
3683
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3684
+  (0.1ms) SAVEPOINT active_record_1
3685
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:00:29.083697"], ["ends_at", "2015-02-27 20:00:29.083877"], ["created_at", "2015-02-27 21:00:29.085526"], ["updated_at", "2015-02-27 21:00:29.085526"]]
3686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3687
+  (0.2ms) rollback transaction
3688
+  (0.1ms) begin transaction
3689
+ -----------------------------------------
3690
+ ActsAsIntervalTest: test_intervals_before
3691
+ -----------------------------------------
3692
+  (0.1ms) SAVEPOINT active_record_1
3693
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:00:29.090830"], ["ends_at", "2015-02-20 21:00:29.091021"], ["created_at", "2015-02-27 21:00:29.092825"], ["updated_at", "2015-02-27 21:00:29.092825"]]
3694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3695
+  (0.1ms) SAVEPOINT active_record_1
3696
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:00:29.096536"], ["ends_at", "2014-02-27 21:00:29.096710"], ["created_at", "2015-02-27 21:00:29.098542"], ["updated_at", "2015-02-27 21:00:29.098542"]]
3697
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3698
+  (0.1ms) SAVEPOINT active_record_1
3699
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:00:29.102487"], ["ends_at", "2016-02-27 21:00:29.102676"], ["created_at", "2015-02-27 21:00:29.104531"], ["updated_at", "2015-02-27 21:00:29.104531"]]
3700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3701
+  (0.1ms) SAVEPOINT active_record_1
3702
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:00:29.108478"], ["ends_at", "2016-02-27 21:00:29.108663"], ["created_at", "2015-02-27 21:00:29.110620"], ["updated_at", "2015-02-27 21:00:29.110620"]]
3703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3704
+  (0.1ms) SAVEPOINT active_record_1
3705
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:00:29.114423"], ["ends_at", "2015-02-27 20:00:29.114661"], ["created_at", "2015-02-27 21:00:29.116321"], ["updated_at", "2015-02-27 21:00:29.116321"]]
3706
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3707
+  (0.2ms) rollback transaction
3708
+  (0.1ms) begin transaction
3709
+ ----------------------------------------------------
3710
+ ActsAsIntervalTest: test_overlapping_interval_method
3711
+ ----------------------------------------------------
3712
+  (0.1ms) rollback transaction
3713
+  (0.1ms) begin transaction
3714
+ ---------------------------------------------
3715
+ ActsAsIntervalTest: test_past_interval_method
3716
+ ---------------------------------------------
3717
+  (0.1ms) rollback transaction
3718
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3719
+  (139.7ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3720
+  (104.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3721
+  (0.1ms) select sqlite_version(*)
3722
+  (110.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3723
+  (0.1ms) SELECT version FROM "schema_migrations"
3724
+  (122.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3725
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3726
+  (0.1ms) begin transaction
3727
+ -----------------------------------------------
3728
+ ActsAsIntervalTest: test_future_interval_method
3729
+ -----------------------------------------------
3730
+  (0.0ms) rollback transaction
3731
+  (0.0ms) begin transaction
3732
+ ----------------------------------------
3733
+ ActsAsIntervalTest: test_intervals_after
3734
+ ----------------------------------------
3735
+  (0.1ms) SAVEPOINT active_record_1
3736
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:00:54.152187"], ["ends_at", "2015-02-20 21:00:54.152326"], ["created_at", "2015-02-27 21:00:54.161625"], ["updated_at", "2015-02-27 21:00:54.161625"]]
3737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3738
+  (0.0ms) SAVEPOINT active_record_1
3739
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:00:54.165321"], ["ends_at", "2014-02-27 21:00:54.165394"], ["created_at", "2015-02-27 21:00:54.166158"], ["updated_at", "2015-02-27 21:00:54.166158"]]
3740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3741
+  (0.0ms) SAVEPOINT active_record_1
3742
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:00:54.167289"], ["ends_at", "2016-02-27 21:00:54.167336"], ["created_at", "2015-02-27 21:00:54.168110"], ["updated_at", "2015-02-27 21:00:54.168110"]]
3743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3744
+  (0.0ms) SAVEPOINT active_record_1
3745
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:00:54.169225"], ["ends_at", "2016-02-27 21:00:54.169272"], ["created_at", "2015-02-27 21:00:54.169592"], ["updated_at", "2015-02-27 21:00:54.169592"]]
3746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3747
+  (0.0ms) SAVEPOINT active_record_1
3748
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:00:54.170642"], ["ends_at", "2015-02-27 20:00:54.170688"], ["created_at", "2015-02-27 21:00:54.171006"], ["updated_at", "2015-02-27 21:00:54.171006"]]
3749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3750
+  (0.1ms) rollback transaction
3751
+  (0.0ms) begin transaction
3752
+ -----------------------------------------
3753
+ ActsAsIntervalTest: test_intervals_before
3754
+ -----------------------------------------
3755
+  (0.0ms) SAVEPOINT active_record_1
3756
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:00:54.172445"], ["ends_at", "2015-02-20 21:00:54.172492"], ["created_at", "2015-02-27 21:00:54.173004"], ["updated_at", "2015-02-27 21:00:54.173004"]]
3757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3758
+  (0.0ms) SAVEPOINT active_record_1
3759
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:00:54.173973"], ["ends_at", "2014-02-27 21:00:54.174024"], ["created_at", "2015-02-27 21:00:54.174615"], ["updated_at", "2015-02-27 21:00:54.174615"]]
3760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3761
+  (0.0ms) SAVEPOINT active_record_1
3762
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:00:54.176095"], ["ends_at", "2016-02-27 21:00:54.176187"], ["created_at", "2015-02-27 21:00:54.176778"], ["updated_at", "2015-02-27 21:00:54.176778"]]
3763
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3764
+  (0.0ms) SAVEPOINT active_record_1
3765
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:00:54.178246"], ["ends_at", "2016-02-27 21:00:54.178345"], ["created_at", "2015-02-27 21:00:54.179195"], ["updated_at", "2015-02-27 21:00:54.179195"]]
3766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3767
+  (0.0ms) SAVEPOINT active_record_1
3768
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:00:54.180123"], ["ends_at", "2015-02-27 20:00:54.180171"], ["created_at", "2015-02-27 21:00:54.180688"], ["updated_at", "2015-02-27 21:00:54.180688"]]
3769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3770
+  (0.1ms) rollback transaction
3771
+  (0.0ms) begin transaction
3772
+ ----------------------------------------------------
3773
+ ActsAsIntervalTest: test_overlapping_interval_method
3774
+ ----------------------------------------------------
3775
+  (0.0ms) rollback transaction
3776
+  (0.0ms) begin transaction
3777
+ ---------------------------------------------
3778
+ ActsAsIntervalTest: test_past_interval_method
3779
+ ---------------------------------------------
3780
+  (0.0ms) rollback transaction
3781
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3782
+  (134.5ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3783
+  (102.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3784
+  (0.2ms) select sqlite_version(*)
3785
+  (257.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3786
+  (0.3ms) SELECT version FROM "schema_migrations"
3787
+  (110.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3788
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3789
+  (0.2ms) begin transaction
3790
+ -----------------------------------------------
3791
+ ActsAsIntervalTest: test_future_interval_method
3792
+ -----------------------------------------------
3793
+  (0.1ms) rollback transaction
3794
+  (0.1ms) begin transaction
3795
+ ----------------------------------------
3796
+ ActsAsIntervalTest: test_intervals_after
3797
+ ----------------------------------------
3798
+  (0.1ms) SAVEPOINT active_record_1
3799
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:01:14.670694"], ["ends_at", "2015-02-20 21:01:14.670914"], ["created_at", "2015-02-27 21:01:14.675679"], ["updated_at", "2015-02-27 21:01:14.675679"]]
3800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3801
+  (0.0ms) SAVEPOINT active_record_1
3802
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:01:14.680982"], ["ends_at", "2014-02-27 21:01:14.681062"], ["created_at", "2015-02-27 21:01:14.681478"], ["updated_at", "2015-02-27 21:01:14.681478"]]
3803
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3804
+  (0.0ms) SAVEPOINT active_record_1
3805
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:01:14.683129"], ["ends_at", "2016-02-27 21:01:14.683194"], ["created_at", "2015-02-27 21:01:14.683527"], ["updated_at", "2015-02-27 21:01:14.683527"]]
3806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3807
+  (0.0ms) SAVEPOINT active_record_1
3808
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:01:14.684370"], ["ends_at", "2016-02-27 21:01:14.684580"], ["created_at", "2015-02-27 21:01:14.684916"], ["updated_at", "2015-02-27 21:01:14.684916"]]
3809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3810
+  (0.0ms) SAVEPOINT active_record_1
3811
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:01:14.685984"], ["ends_at", "2015-02-27 20:01:14.686390"], ["created_at", "2015-02-27 21:01:14.686792"], ["updated_at", "2015-02-27 21:01:14.686792"]]
3812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3813
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 21:01:14.685984')
3814
+  (0.1ms) rollback transaction
3815
+  (0.0ms) begin transaction
3816
+ -----------------------------------------
3817
+ ActsAsIntervalTest: test_intervals_before
3818
+ -----------------------------------------
3819
+  (0.0ms) SAVEPOINT active_record_1
3820
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:01:14.691150"], ["ends_at", "2015-02-20 21:01:14.691215"], ["created_at", "2015-02-27 21:01:14.691772"], ["updated_at", "2015-02-27 21:01:14.691772"]]
3821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3822
+  (0.0ms) SAVEPOINT active_record_1
3823
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:01:14.692857"], ["ends_at", "2014-02-27 21:01:14.692910"], ["created_at", "2015-02-27 21:01:14.693242"], ["updated_at", "2015-02-27 21:01:14.693242"]]
3824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3825
+  (0.0ms) SAVEPOINT active_record_1
3826
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:01:14.694286"], ["ends_at", "2016-02-27 21:01:14.694336"], ["created_at", "2015-02-27 21:01:14.694857"], ["updated_at", "2015-02-27 21:01:14.694857"]]
3827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3828
+  (0.0ms) SAVEPOINT active_record_1
3829
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:01:14.695753"], ["ends_at", "2016-02-27 21:01:14.695800"], ["created_at", "2015-02-27 21:01:14.696274"], ["updated_at", "2015-02-27 21:01:14.696274"]]
3830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3831
+  (0.0ms) SAVEPOINT active_record_1
3832
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:01:14.697039"], ["ends_at", "2015-02-27 20:01:14.697084"], ["created_at", "2015-02-27 21:01:14.697525"], ["updated_at", "2015-02-27 21:01:14.697525"]]
3833
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3834
+  (0.1ms) rollback transaction
3835
+  (0.0ms) begin transaction
3836
+ ----------------------------------------------------
3837
+ ActsAsIntervalTest: test_overlapping_interval_method
3838
+ ----------------------------------------------------
3839
+  (0.0ms) rollback transaction
3840
+  (0.0ms) begin transaction
3841
+ ---------------------------------------------
3842
+ ActsAsIntervalTest: test_past_interval_method
3843
+ ---------------------------------------------
3844
+  (0.0ms) rollback transaction
3845
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3846
+  (122.2ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3847
+  (101.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3848
+  (0.2ms) select sqlite_version(*)
3849
+  (131.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3850
+  (0.1ms) SELECT version FROM "schema_migrations"
3851
+  (111.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3852
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3853
+  (0.1ms) begin transaction
3854
+ -----------------------------------------------
3855
+ ActsAsIntervalTest: test_future_interval_method
3856
+ -----------------------------------------------
3857
+  (0.1ms) rollback transaction
3858
+  (0.1ms) begin transaction
3859
+ ----------------------------------------
3860
+ ActsAsIntervalTest: test_intervals_after
3861
+ ----------------------------------------
3862
+  (0.1ms) SAVEPOINT active_record_1
3863
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:02:08.811215"], ["ends_at", "2015-02-20 21:02:08.811486"], ["created_at", "2015-02-27 21:02:08.816191"], ["updated_at", "2015-02-27 21:02:08.816191"]]
3864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3865
+  (0.1ms) SAVEPOINT active_record_1
3866
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:02:08.821972"], ["ends_at", "2014-02-27 21:02:08.822067"], ["created_at", "2015-02-27 21:02:08.823505"], ["updated_at", "2015-02-27 21:02:08.823505"]]
3867
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3868
+  (0.0ms) SAVEPOINT active_record_1
3869
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:02:08.825355"], ["ends_at", "2016-02-27 21:02:08.825424"], ["created_at", "2015-02-27 21:02:08.825963"], ["updated_at", "2015-02-27 21:02:08.825963"]]
3870
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3871
+  (0.0ms) SAVEPOINT active_record_1
3872
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:02:08.827261"], ["ends_at", "2016-02-27 21:02:08.827340"], ["created_at", "2015-02-27 21:02:08.828075"], ["updated_at", "2015-02-27 21:02:08.828075"]]
3873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3874
+  (0.0ms) SAVEPOINT active_record_1
3875
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:02:08.829312"], ["ends_at", "2015-02-27 20:02:08.829388"], ["created_at", "2015-02-27 21:02:08.830115"], ["updated_at", "2015-02-27 21:02:08.830115"]]
3876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3877
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 20:02:08.829388')
3878
+  (0.1ms) rollback transaction
3879
+  (0.0ms) begin transaction
3880
+ -----------------------------------------
3881
+ ActsAsIntervalTest: test_intervals_before
3882
+ -----------------------------------------
3883
+  (0.0ms) SAVEPOINT active_record_1
3884
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:02:08.832617"], ["ends_at", "2015-02-20 21:02:08.832685"], ["created_at", "2015-02-27 21:02:08.833312"], ["updated_at", "2015-02-27 21:02:08.833312"]]
3885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3886
+  (0.0ms) SAVEPOINT active_record_1
3887
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:02:08.834377"], ["ends_at", "2014-02-27 21:02:08.834447"], ["created_at", "2015-02-27 21:02:08.835074"], ["updated_at", "2015-02-27 21:02:08.835074"]]
3888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3889
+  (0.0ms) SAVEPOINT active_record_1
3890
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:02:08.836150"], ["ends_at", "2016-02-27 21:02:08.836409"], ["created_at", "2015-02-27 21:02:08.836832"], ["updated_at", "2015-02-27 21:02:08.836832"]]
3891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3892
+  (0.0ms) SAVEPOINT active_record_1
3893
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:02:08.838252"], ["ends_at", "2016-02-27 21:02:08.838315"], ["created_at", "2015-02-27 21:02:08.838755"], ["updated_at", "2015-02-27 21:02:08.838755"]]
3894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3895
+  (0.0ms) SAVEPOINT active_record_1
3896
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:02:08.839939"], ["ends_at", "2015-02-27 20:02:08.839998"], ["created_at", "2015-02-27 21:02:08.840378"], ["updated_at", "2015-02-27 21:02:08.840378"]]
3897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3898
+  (0.1ms) rollback transaction
3899
+  (0.0ms) begin transaction
3900
+ ----------------------------------------------------
3901
+ ActsAsIntervalTest: test_overlapping_interval_method
3902
+ ----------------------------------------------------
3903
+  (0.0ms) rollback transaction
3904
+  (0.0ms) begin transaction
3905
+ ---------------------------------------------
3906
+ ActsAsIntervalTest: test_past_interval_method
3907
+ ---------------------------------------------
3908
+  (0.0ms) rollback transaction
3909
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3910
+  (149.2ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3911
+  (132.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3912
+  (0.3ms) select sqlite_version(*)
3913
+  (154.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3914
+  (0.3ms) SELECT version FROM "schema_migrations"
3915
+  (180.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3916
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3917
+  (0.1ms) begin transaction
3918
+ -----------------------------------------------
3919
+ ActsAsIntervalTest: test_future_interval_method
3920
+ -----------------------------------------------
3921
+  (0.1ms) rollback transaction
3922
+  (0.1ms) begin transaction
3923
+ ----------------------------------------
3924
+ ActsAsIntervalTest: test_intervals_after
3925
+ ----------------------------------------
3926
+  (0.1ms) SAVEPOINT active_record_1
3927
+ SQL (0.9ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:02:25.285694"], ["ends_at", "2015-02-20 21:02:25.285900"], ["created_at", "2015-02-27 21:02:25.290212"], ["updated_at", "2015-02-27 21:02:25.290212"]]
3928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3929
+  (0.1ms) SAVEPOINT active_record_1
3930
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:02:25.296048"], ["ends_at", "2014-02-27 21:02:25.296135"], ["created_at", "2015-02-27 21:02:25.296780"], ["updated_at", "2015-02-27 21:02:25.296780"]]
3931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3932
+  (0.0ms) SAVEPOINT active_record_1
3933
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:02:25.299181"], ["ends_at", "2016-02-27 21:02:25.299262"], ["created_at", "2015-02-27 21:02:25.299827"], ["updated_at", "2015-02-27 21:02:25.299827"]]
3934
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3935
+  (0.0ms) SAVEPOINT active_record_1
3936
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:02:25.301794"], ["ends_at", "2016-02-27 21:02:25.301873"], ["created_at", "2015-02-27 21:02:25.302409"], ["updated_at", "2015-02-27 21:02:25.302409"]]
3937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3938
+  (0.0ms) SAVEPOINT active_record_1
3939
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:02:25.303655"], ["ends_at", "2015-02-27 20:02:25.303717"], ["created_at", "2015-02-27 21:02:25.304116"], ["updated_at", "2015-02-27 21:02:25.304116"]]
3940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3941
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 20:02:25.303717')
3942
+  (0.1ms) rollback transaction
3943
+  (0.1ms) begin transaction
3944
+ -----------------------------------------
3945
+ ActsAsIntervalTest: test_intervals_before
3946
+ -----------------------------------------
3947
+  (0.0ms) SAVEPOINT active_record_1
3948
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:02:25.306536"], ["ends_at", "2015-02-20 21:02:25.306604"], ["created_at", "2015-02-27 21:02:25.307271"], ["updated_at", "2015-02-27 21:02:25.307271"]]
3949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3950
+  (0.0ms) SAVEPOINT active_record_1
3951
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:02:25.308559"], ["ends_at", "2014-02-27 21:02:25.308624"], ["created_at", "2015-02-27 21:02:25.309053"], ["updated_at", "2015-02-27 21:02:25.309053"]]
3952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3953
+  (0.0ms) SAVEPOINT active_record_1
3954
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:02:25.310292"], ["ends_at", "2016-02-27 21:02:25.310354"], ["created_at", "2015-02-27 21:02:25.310790"], ["updated_at", "2015-02-27 21:02:25.310790"]]
3955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3956
+  (0.0ms) SAVEPOINT active_record_1
3957
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:02:25.312036"], ["ends_at", "2016-02-27 21:02:25.312097"], ["created_at", "2015-02-27 21:02:25.312522"], ["updated_at", "2015-02-27 21:02:25.312522"]]
3958
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3959
+  (0.0ms) SAVEPOINT active_record_1
3960
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:02:25.313741"], ["ends_at", "2015-02-27 20:02:25.313798"], ["created_at", "2015-02-27 21:02:25.314187"], ["updated_at", "2015-02-27 21:02:25.314187"]]
3961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3962
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 21:02:25.313741')
3963
+  (0.1ms) rollback transaction
3964
+  (0.0ms) begin transaction
3965
+ ----------------------------------------------------
3966
+ ActsAsIntervalTest: test_overlapping_interval_method
3967
+ ----------------------------------------------------
3968
+  (0.0ms) rollback transaction
3969
+  (0.0ms) begin transaction
3970
+ ---------------------------------------------
3971
+ ActsAsIntervalTest: test_past_interval_method
3972
+ ---------------------------------------------
3973
+  (0.0ms) rollback transaction
3974
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3975
+  (212.9ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
3976
+  (180.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3977
+  (0.2ms) select sqlite_version(*)
3978
+  (110.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3979
+  (0.3ms) SELECT version FROM "schema_migrations"
3980
+  (165.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
3981
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3982
+  (0.2ms) begin transaction
3983
+ -----------------------------------------------
3984
+ ActsAsIntervalTest: test_future_interval_method
3985
+ -----------------------------------------------
3986
+  (0.2ms) rollback transaction
3987
+  (0.4ms) begin transaction
3988
+ ----------------------------------------
3989
+ ActsAsIntervalTest: test_intervals_after
3990
+ ----------------------------------------
3991
+  (0.1ms) SAVEPOINT active_record_1
3992
+ SQL (1.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:05:06.097123"], ["ends_at", "2015-02-20 21:05:06.097886"], ["created_at", "2015-02-27 21:05:06.115241"], ["updated_at", "2015-02-27 21:05:06.115241"]]
3993
+  (0.3ms) RELEASE SAVEPOINT active_record_1
3994
+  (0.1ms) SAVEPOINT active_record_1
3995
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:05:06.127577"], ["ends_at", "2014-02-27 21:05:06.128015"], ["created_at", "2015-02-27 21:05:06.130504"], ["updated_at", "2015-02-27 21:05:06.130504"]]
3996
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3997
+  (0.1ms) SAVEPOINT active_record_1
3998
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:05:06.137304"], ["ends_at", "2016-02-27 21:05:06.137504"], ["created_at", "2015-02-27 21:05:06.139412"], ["updated_at", "2015-02-27 21:05:06.139412"]]
3999
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4000
+  (0.1ms) SAVEPOINT active_record_1
4001
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:05:06.143170"], ["ends_at", "2016-02-27 21:05:06.143348"], ["created_at", "2015-02-27 21:05:06.145168"], ["updated_at", "2015-02-27 21:05:06.145168"]]
4002
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4003
+  (0.1ms) SAVEPOINT active_record_1
4004
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:05:06.149011"], ["ends_at", "2015-02-27 20:05:06.149184"], ["created_at", "2015-02-27 21:05:06.150885"], ["updated_at", "2015-02-27 21:05:06.150885"]]
4005
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4006
+  (0.2ms) rollback transaction
4007
+  (0.1ms) begin transaction
4008
+ -----------------------------------------
4009
+ ActsAsIntervalTest: test_intervals_before
4010
+ -----------------------------------------
4011
+  (0.1ms) SAVEPOINT active_record_1
4012
+ SQL (0.3ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:05:06.156212"], ["ends_at", "2015-02-20 21:05:06.156421"], ["created_at", "2015-02-27 21:05:06.158226"], ["updated_at", "2015-02-27 21:05:06.158226"]]
4013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4014
+  (0.1ms) SAVEPOINT active_record_1
4015
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:05:06.162099"], ["ends_at", "2014-02-27 21:05:06.162278"], ["created_at", "2015-02-27 21:05:06.164200"], ["updated_at", "2015-02-27 21:05:06.164200"]]
4016
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4017
+  (0.1ms) SAVEPOINT active_record_1
4018
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:05:06.168036"], ["ends_at", "2016-02-27 21:05:06.168240"], ["created_at", "2015-02-27 21:05:06.170046"], ["updated_at", "2015-02-27 21:05:06.170046"]]
4019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4020
+  (0.1ms) SAVEPOINT active_record_1
4021
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:05:06.173842"], ["ends_at", "2016-02-27 21:05:06.174020"], ["created_at", "2015-02-27 21:05:06.175840"], ["updated_at", "2015-02-27 21:05:06.175840"]]
4022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4023
+  (0.1ms) SAVEPOINT active_record_1
4024
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:05:06.179501"], ["ends_at", "2015-02-27 20:05:06.179669"], ["created_at", "2015-02-27 21:05:06.181352"], ["updated_at", "2015-02-27 21:05:06.181352"]]
4025
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4026
+  (0.2ms) rollback transaction
4027
+  (0.1ms) begin transaction
4028
+ ----------------------------------------------------
4029
+ ActsAsIntervalTest: test_overlapping_interval_method
4030
+ ----------------------------------------------------
4031
+  (0.1ms) rollback transaction
4032
+  (0.1ms) begin transaction
4033
+ ---------------------------------------------
4034
+ ActsAsIntervalTest: test_past_interval_method
4035
+ ---------------------------------------------
4036
+  (0.1ms) rollback transaction
4037
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4038
+  (363.5ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
4039
+  (142.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
4040
+  (0.2ms) select sqlite_version(*)
4041
+  (176.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4042
+  (0.2ms) SELECT version FROM "schema_migrations"
4043
+  (188.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
4044
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4045
+  (0.5ms) begin transaction
4046
+ -----------------------------------------------
4047
+ ActsAsIntervalTest: test_future_interval_method
4048
+ -----------------------------------------------
4049
+  (0.1ms) rollback transaction
4050
+  (0.0ms) begin transaction
4051
+ ----------------------------------------
4052
+ ActsAsIntervalTest: test_intervals_after
4053
+ ----------------------------------------
4054
+  (0.0ms) SAVEPOINT active_record_1
4055
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:20:13.474394"], ["ends_at", "2015-02-20 21:20:13.474630"], ["created_at", "2015-02-27 21:20:13.478422"], ["updated_at", "2015-02-27 21:20:13.478422"]]
4056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4057
+  (0.0ms) SAVEPOINT active_record_1
4058
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:20:13.482289"], ["ends_at", "2014-02-27 21:20:13.482359"], ["created_at", "2015-02-27 21:20:13.482968"], ["updated_at", "2015-02-27 21:20:13.482968"]]
4059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4060
+  (0.0ms) SAVEPOINT active_record_1
4061
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:20:13.483914"], ["ends_at", "2016-02-27 21:20:13.483963"], ["created_at", "2015-02-27 21:20:13.484466"], ["updated_at", "2015-02-27 21:20:13.484466"]]
4062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4063
+  (0.0ms) SAVEPOINT active_record_1
4064
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:20:13.485309"], ["ends_at", "2016-02-27 21:20:13.485358"], ["created_at", "2015-02-27 21:20:13.485867"], ["updated_at", "2015-02-27 21:20:13.485867"]]
4065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4066
+  (0.0ms) SAVEPOINT active_record_1
4067
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:20:13.486705"], ["ends_at", "2015-02-27 20:20:13.486752"], ["created_at", "2015-02-27 21:20:13.487251"], ["updated_at", "2015-02-27 21:20:13.487251"]]
4068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4069
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 20:20:13.486752')
4070
+  (0.1ms) rollback transaction
4071
+  (0.0ms) begin transaction
4072
+ -----------------------------------------
4073
+ ActsAsIntervalTest: test_intervals_before
4074
+ -----------------------------------------
4075
+  (0.0ms) SAVEPOINT active_record_1
4076
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:20:13.489244"], ["ends_at", "2015-02-20 21:20:13.489330"], ["created_at", "2015-02-27 21:20:13.490004"], ["updated_at", "2015-02-27 21:20:13.490004"]]
4077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4078
+  (0.0ms) SAVEPOINT active_record_1
4079
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:20:13.491179"], ["ends_at", "2014-02-27 21:20:13.491295"], ["created_at", "2015-02-27 21:20:13.492061"], ["updated_at", "2015-02-27 21:20:13.492061"]]
4080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4081
+  (0.0ms) SAVEPOINT active_record_1
4082
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:20:13.493227"], ["ends_at", "2016-02-27 21:20:13.493281"], ["created_at", "2015-02-27 21:20:13.493633"], ["updated_at", "2015-02-27 21:20:13.493633"]]
4083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4084
+  (0.0ms) SAVEPOINT active_record_1
4085
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:20:13.494814"], ["ends_at", "2016-02-27 21:20:13.494861"], ["created_at", "2015-02-27 21:20:13.495189"], ["updated_at", "2015-02-27 21:20:13.495189"]]
4086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4087
+  (0.0ms) SAVEPOINT active_record_1
4088
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:20:13.496118"], ["ends_at", "2015-02-27 20:20:13.496163"], ["created_at", "2015-02-27 21:20:13.496462"], ["updated_at", "2015-02-27 21:20:13.496462"]]
4089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4090
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 21:20:13.496118')
4091
+  (0.1ms) rollback transaction
4092
+  (0.0ms) begin transaction
4093
+ ----------------------------------------------------
4094
+ ActsAsIntervalTest: test_overlapping_interval_method
4095
+ ----------------------------------------------------
4096
+  (0.0ms) rollback transaction
4097
+  (0.0ms) begin transaction
4098
+ ---------------------------------------------
4099
+ ActsAsIntervalTest: test_past_interval_method
4100
+ ---------------------------------------------
4101
+  (0.0ms) rollback transaction
4102
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4103
+  (581.5ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
4104
+  (476.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
4105
+  (0.1ms) select sqlite_version(*)
4106
+  (521.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4107
+  (0.1ms) SELECT version FROM "schema_migrations"
4108
+  (499.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
4109
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4110
+  (0.1ms) begin transaction
4111
+ -----------------------------------------------
4112
+ ActsAsIntervalTest: test_future_interval_method
4113
+ -----------------------------------------------
4114
+  (0.1ms) rollback transaction
4115
+  (0.0ms) begin transaction
4116
+ ----------------------------------------
4117
+ ActsAsIntervalTest: test_intervals_after
4118
+ ----------------------------------------
4119
+  (0.1ms) SAVEPOINT active_record_1
4120
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:21:12.950263"], ["ends_at", "2015-02-20 21:21:12.950427"], ["created_at", "2015-02-27 21:21:12.954940"], ["updated_at", "2015-02-27 21:21:12.954940"]]
4121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4122
+  (0.0ms) SAVEPOINT active_record_1
4123
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:21:12.959167"], ["ends_at", "2014-02-27 21:21:12.959245"], ["created_at", "2015-02-27 21:21:12.960044"], ["updated_at", "2015-02-27 21:21:12.960044"]]
4124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4125
+  (0.0ms) SAVEPOINT active_record_1
4126
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:21:12.961299"], ["ends_at", "2016-02-27 21:21:12.961354"], ["created_at", "2015-02-27 21:21:12.962191"], ["updated_at", "2015-02-27 21:21:12.962191"]]
4127
+  (0.2ms) RELEASE SAVEPOINT active_record_1
4128
+  (0.0ms) SAVEPOINT active_record_1
4129
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:21:12.963447"], ["ends_at", "2016-02-27 21:21:12.963501"], ["created_at", "2015-02-27 21:21:12.963848"], ["updated_at", "2015-02-27 21:21:12.963848"]]
4130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4131
+  (0.0ms) SAVEPOINT active_record_1
4132
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:21:12.964657"], ["ends_at", "2015-02-27 20:21:12.964709"], ["created_at", "2015-02-27 21:21:12.965216"], ["updated_at", "2015-02-27 21:21:12.965216"]]
4133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4134
+ Interval Load (0.3ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 20:21:12.964709')
4135
+  (0.1ms) rollback transaction
4136
+  (0.0ms) begin transaction
4137
+ -----------------------------------------
4138
+ ActsAsIntervalTest: test_intervals_before
4139
+ -----------------------------------------
4140
+  (0.0ms) SAVEPOINT active_record_1
4141
+ SQL (0.4ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:21:12.967574"], ["ends_at", "2015-02-20 21:21:12.967704"], ["created_at", "2015-02-27 21:21:12.968594"], ["updated_at", "2015-02-27 21:21:12.968594"]]
4142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4143
+  (0.2ms) SAVEPOINT active_record_1
4144
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:21:12.969855"], ["ends_at", "2014-02-27 21:21:12.969944"], ["created_at", "2015-02-27 21:21:12.970553"], ["updated_at", "2015-02-27 21:21:12.970553"]]
4145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4146
+  (0.0ms) SAVEPOINT active_record_1
4147
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:21:12.971544"], ["ends_at", "2016-02-27 21:21:12.971596"], ["created_at", "2015-02-27 21:21:12.972106"], ["updated_at", "2015-02-27 21:21:12.972106"]]
4148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4149
+  (0.0ms) SAVEPOINT active_record_1
4150
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:21:12.972954"], ["ends_at", "2016-02-27 21:21:12.973177"], ["created_at", "2015-02-27 21:21:12.973522"], ["updated_at", "2015-02-27 21:21:12.973522"]]
4151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4152
+  (0.0ms) SAVEPOINT active_record_1
4153
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:21:12.974738"], ["ends_at", "2015-02-27 20:21:12.974786"], ["created_at", "2015-02-27 21:21:12.975262"], ["updated_at", "2015-02-27 21:21:12.975262"]]
4154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4155
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 21:21:12.974738')
4156
+  (0.1ms) rollback transaction
4157
+  (0.2ms) begin transaction
4158
+ ----------------------------------------------------
4159
+ ActsAsIntervalTest: test_overlapping_interval_method
4160
+ ----------------------------------------------------
4161
+  (0.0ms) rollback transaction
4162
+  (0.0ms) begin transaction
4163
+ ---------------------------------------------
4164
+ ActsAsIntervalTest: test_past_interval_method
4165
+ ---------------------------------------------
4166
+  (0.0ms) rollback transaction
4167
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4168
+  (341.6ms) CREATE TABLE "intervals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "starts_at" datetime, "ends_at" datetime, "created_at" datetime, "updated_at" datetime) 
4169
+  (396.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
4170
+  (0.1ms) select sqlite_version(*)
4171
+  (432.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4172
+  (0.2ms) SELECT version FROM "schema_migrations"
4173
+  (454.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150227133736')
4174
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4175
+  (0.1ms) begin transaction
4176
+ -----------------------------------------------
4177
+ ActsAsIntervalTest: test_future_interval_method
4178
+ -----------------------------------------------
4179
+  (0.1ms) rollback transaction
4180
+  (0.0ms) begin transaction
4181
+ ----------------------------------------
4182
+ ActsAsIntervalTest: test_intervals_after
4183
+ ----------------------------------------
4184
+  (0.0ms) SAVEPOINT active_record_1
4185
+ SQL (0.2ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:21:45.616455"], ["ends_at", "2015-02-20 21:21:45.616594"], ["created_at", "2015-02-27 21:21:45.620378"], ["updated_at", "2015-02-27 21:21:45.620378"]]
4186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4187
+  (0.0ms) SAVEPOINT active_record_1
4188
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:21:45.624557"], ["ends_at", "2014-02-27 21:21:45.624629"], ["created_at", "2015-02-27 21:21:45.625445"], ["updated_at", "2015-02-27 21:21:45.625445"]]
4189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4190
+  (0.0ms) SAVEPOINT active_record_1
4191
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:21:45.626734"], ["ends_at", "2016-02-27 21:21:45.626785"], ["created_at", "2015-02-27 21:21:45.627646"], ["updated_at", "2015-02-27 21:21:45.627646"]]
4192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4193
+  (0.0ms) SAVEPOINT active_record_1
4194
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:21:45.628486"], ["ends_at", "2016-02-27 21:21:45.628535"], ["created_at", "2015-02-27 21:21:45.629037"], ["updated_at", "2015-02-27 21:21:45.629037"]]
4195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4196
+  (0.0ms) SAVEPOINT active_record_1
4197
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:21:45.629841"], ["ends_at", "2015-02-27 20:21:45.629888"], ["created_at", "2015-02-27 21:21:45.630361"], ["updated_at", "2015-02-27 21:21:45.630361"]]
4198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4199
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (starts_at >= '2015-02-27 20:21:45.629888')
4200
+  (0.1ms) rollback transaction
4201
+  (0.0ms) begin transaction
4202
+ -----------------------------------------
4203
+ ActsAsIntervalTest: test_intervals_before
4204
+ -----------------------------------------
4205
+  (0.0ms) SAVEPOINT active_record_1
4206
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-01-27 21:21:45.632341"], ["ends_at", "2015-02-20 21:21:45.632396"], ["created_at", "2015-02-27 21:21:45.632953"], ["updated_at", "2015-02-27 21:21:45.632953"]]
4207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4208
+  (0.0ms) SAVEPOINT active_record_1
4209
+ SQL (0.1ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2013-02-27 21:21:45.634029"], ["ends_at", "2014-02-27 21:21:45.634098"], ["created_at", "2015-02-27 21:21:45.634722"], ["updated_at", "2015-02-27 21:21:45.634722"]]
4210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4211
+  (0.0ms) SAVEPOINT active_record_1
4212
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-03-27 21:21:45.635784"], ["ends_at", "2016-02-27 21:21:45.636040"], ["created_at", "2015-02-27 21:21:45.636423"], ["updated_at", "2015-02-27 21:21:45.636423"]]
4213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4214
+  (0.0ms) SAVEPOINT active_record_1
4215
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2014-02-27 21:21:45.637309"], ["ends_at", "2016-02-27 21:21:45.637357"], ["created_at", "2015-02-27 21:21:45.637872"], ["updated_at", "2015-02-27 21:21:45.637872"]]
4216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4217
+  (0.0ms) SAVEPOINT active_record_1
4218
+ SQL (0.0ms) INSERT INTO "intervals" ("starts_at", "ends_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["starts_at", "2015-02-26 21:21:45.638988"], ["ends_at", "2015-02-27 20:21:45.639034"], ["created_at", "2015-02-27 21:21:45.639347"], ["updated_at", "2015-02-27 21:21:45.639347"]]
4219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4220
+ Interval Load (0.1ms) SELECT "intervals".* FROM "intervals" WHERE (ends_at <= '2015-02-26 21:21:45.638988')
4221
+  (0.1ms) rollback transaction
4222
+  (0.0ms) begin transaction
4223
+ ----------------------------------------------------
4224
+ ActsAsIntervalTest: test_overlapping_interval_method
4225
+ ----------------------------------------------------
4226
+  (0.0ms) rollback transaction
4227
+  (0.0ms) begin transaction
4228
+ ---------------------------------------------
4229
+ ActsAsIntervalTest: test_past_interval_method
4230
+ ---------------------------------------------
4231
+  (0.0ms) rollback transaction