rock_motive 1.0.0.beta3 → 1.0.0.beta4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b543ff62271096cca68859c3078476e6d258a88
4
- data.tar.gz: 49daeb058eaa556f659afcaefd673f29115a2044
3
+ metadata.gz: 57ed4ff58d65f937704c33704338f64e488733be
4
+ data.tar.gz: b421599e28b720ac782be06ab7591df2c433d90e
5
5
  SHA512:
6
- metadata.gz: b0b41603b71be41d8bf227ce390ff128a3e8456d1fe1129cc7278e27c2b0f773eba3a3399706c35b135c266faf2026fd343ac94e634cfa29769fb63ffbcaf475
7
- data.tar.gz: 93b6b53633ce71cf438b469755b2f2ff3ee918612e5d0fe6283d74939941e7cf2f9ee0528e1fb0c61d7b27889995ad206e96ec91cd52fd67604569fdc159d4c5
6
+ metadata.gz: ea582557710c987d5bc52a44bc0855251b74fa213b9240876640f1b155c94965d007a246f590b9ea78b63f79c11e29dea23d0dc626d32a295db20284552fe2db
7
+ data.tar.gz: 7c7674c11c03f546fd22d834b8a189108a53dd87a654c93cc48cb77a411103af3e54f5921178539ab46ac5de3100d2dc84e9d6098d27ed8981b20453fba0b510
data/lib/rock_motive.rb CHANGED
@@ -1,3 +1,4 @@
1
1
  require 'rock_motive/version'
2
2
  require 'rock_motive/context'
3
+ require 'rock_motive/attribute'
3
4
  require 'rock_motive/railtie' if defined?(::Rails)
@@ -0,0 +1,31 @@
1
+ require 'active_support/concern'
2
+ require 'active_support/core_ext/module/aliasing'
3
+ require 'rock_motive/resolver'
4
+
5
+ module RockMotive::Attribute
6
+ extend ActiveSupport::Concern
7
+
8
+ module ClassMethods
9
+ def attr_with_roles(*symbols)
10
+ symbols.each do |symbol|
11
+ roles = ::RockMotive::Resolver.roles(symbol, ::RockMotive::Resolver.scopes(self))
12
+
13
+ class_eval(<<-EOC)
14
+ if instance_methods.include?(:#{symbol}=)
15
+ def #{symbol}_with_roles=(obj)
16
+ #{roles.map{|role| "obj.extend(#{role.name})" }.join('; ')}
17
+ __send__(:#{symbol}_without_roles=, obj)
18
+ end
19
+ alias_method_chain :#{symbol}=, :roles
20
+ else
21
+ def #{symbol}=(obj)
22
+ #{roles.map{|role| "obj.extend(#{role.name})" }.join('; ')}
23
+ @#{symbol} = obj
24
+ end
25
+ end
26
+ attr_reader(:#{symbol}) unless instance_methods.include?(:#{symbol})
27
+ EOC
28
+ end
29
+ end
30
+ end
31
+ end
@@ -1,7 +1,7 @@
1
1
  require 'uninclude'
2
2
  require 'active_support/inflector'
3
3
  require 'active_support/core_ext/module/aliasing'
4
- require 'rock_motive'
4
+ require 'rock_motive/resolver'
5
5
 
6
6
  class RockMotive::Context
7
7
  class << self
@@ -10,9 +10,7 @@ class RockMotive::Context
10
10
  end
11
11
 
12
12
  def scopes
13
- @scopes ||= name.to_s.split('::').inject(['']) do |scopes, ns|
14
- scopes + ["#{scopes.last}::#{ns}"]
15
- end
13
+ @scopes ||= ::RockMotive::Resolver.scopes(self)
16
14
  end
17
15
 
18
16
  def scope(*nss)
@@ -25,17 +23,6 @@ class RockMotive::Context
25
23
  @actors ||= []
26
24
  end
27
25
 
28
- def get_role_by_name(name)
29
- role_name = name.to_s.classify
30
-
31
- const = scopes.inject(nil) do |c, ns|
32
- name = "#{ns}::#{role_name}"
33
- (name.safe_constantize || "#{name}Role".safe_constantize) || c
34
- end
35
-
36
- (const.is_a?(Module) && !const.is_a?(Class)) ? const : nil
37
- end
38
-
39
26
  private
40
27
 
41
28
  def method_added(method_name)
@@ -68,9 +55,9 @@ class RockMotive::Context
68
55
 
69
56
  case type
70
57
  when :req, :opt
71
- for_args << get_role_by_name(name)
58
+ for_args << ::RockMotive::Resolver.roles(name, scopes)
72
59
  when :keyreq, :key
73
- for_keywords[name] = get_role_by_name(name)
60
+ for_keywords[name] = ::RockMotive::Resolver.roles(name, scopes)
74
61
  end
75
62
  end
76
63
 
@@ -92,27 +79,27 @@ class RockMotive::Context
92
79
  end
93
80
 
94
81
  def for_args_definition(for_args, method_name)
95
- defs = for_args.map.with_index do |role, n|
96
- if role.nil?
82
+ defs = for_args.map.with_index do |roles, n|
83
+ if roles.empty?
97
84
  ''
98
85
  else
99
- "args[#{n}].#{method_name}(#{role.name})"
86
+ roles.map {|role| "args[#{n}].#{method_name}(#{role.name})" }
100
87
  end
101
88
  end
102
89
 
103
- defs.reject(&:empty?).join('; ')
90
+ defs.flatten.reject(&:empty?).join('; ')
104
91
  end
105
92
 
106
93
  def for_keywords_definition(for_keywords, method_name)
107
- defs = for_keywords.map do |key, role|
108
- if role.nil?
94
+ defs = for_keywords.map do |key, roles|
95
+ if roles.empty?
109
96
  ''
110
97
  else
111
- "kv[:#{key}].#{method_name}(#{role.name})"
98
+ roles.map {|role| "kv[:#{key}].#{method_name}(#{role.name})" }
112
99
  end
113
100
  end
114
101
 
115
- defs.reject(&:empty?).join('; ')
102
+ defs.flatten.reject(&:empty?).join('; ')
116
103
  end
117
104
  end
118
105
  end
@@ -0,0 +1,24 @@
1
+ require 'rock_motive'
2
+
3
+ module RockMotive::Resolver
4
+ class << self
5
+ def roles(name, scopes = [''])
6
+ role_name = name.to_s.classify
7
+
8
+ consts = scopes.map do |ns|
9
+ name = "#{ns}::#{role_name}"
10
+ const = (name.safe_constantize || "#{name}Role".safe_constantize)
11
+
12
+ (const.is_a?(Module) && !const.is_a?(Class)) ? const : nil
13
+ end
14
+
15
+ consts.reject(&:nil?)
16
+ end
17
+
18
+ def scopes(mod)
19
+ mod.name.to_s.split('::').inject(['']) do |scopes, ns|
20
+ scopes + ["#{scopes.last}::#{ns}"]
21
+ end
22
+ end
23
+ end
24
+ end
@@ -1,3 +1,3 @@
1
1
  module RockMotive
2
- VERSION = '1.0.0.beta3'
2
+ VERSION = '1.0.0.beta4'
3
3
  end
@@ -2878,3 +2878,2316 @@ RockMotive::ContextTest: test_#execute_with_unextended
2878
2878
  RockMotiveTest: test_truth
2879
2879
  --------------------------
2880
2880
   (0.0ms) rollback transaction
2881
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2882
+  (0.1ms) begin transaction
2883
+ --------------------------
2884
+ RockMotiveTest: test_truth
2885
+ --------------------------
2886
+  (0.0ms) rollback transaction
2887
+  (0.0ms) begin transaction
2888
+ --------------------------------------------------
2889
+ RockMotive::ContextTest: test_#execute_with_extend
2890
+ --------------------------------------------------
2891
+  (0.1ms) rollback transaction
2892
+  (0.0ms) begin transaction
2893
+ ------------------------------------------------------------
2894
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
2895
+ ------------------------------------------------------------
2896
+  (0.1ms) rollback transaction
2897
+  (0.0ms) begin transaction
2898
+ -------------------------------------------------
2899
+ RockMotive::ContextTest: test_#execute_with_scope
2900
+ -------------------------------------------------
2901
+  (0.0ms) rollback transaction
2902
+  (0.0ms) begin transaction
2903
+ ----------------------------------------------------
2904
+ RockMotive::ContextTest: test_.execute_with_override
2905
+ ----------------------------------------------------
2906
+  (0.0ms) rollback transaction
2907
+  (0.1ms) begin transaction
2908
+ -------------------------------------
2909
+ RockMotive::ContextTest: test_.actors
2910
+ -------------------------------------
2911
+  (0.1ms) rollback transaction
2912
+  (0.0ms) begin transaction
2913
+ ------------------------------------------------------
2914
+ RockMotive::ContextTest: test_#execute_with_unextended
2915
+ ------------------------------------------------------
2916
+  (0.0ms) rollback transaction
2917
+  (0.0ms) begin transaction
2918
+ -------------------------------------
2919
+ RockMotive::ContextTest: test_.scopes
2920
+ -------------------------------------
2921
+  (0.0ms) rollback transaction
2922
+  (0.1ms) begin transaction
2923
+ --------------------------------------
2924
+ RockMotive::ContextTest: test_.execute
2925
+ --------------------------------------
2926
+  (0.0ms) rollback transaction
2927
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2928
+  (0.1ms) begin transaction
2929
+ --------------------------
2930
+ RockMotiveTest: test_truth
2931
+ --------------------------
2932
+  (0.0ms) rollback transaction
2933
+  (0.0ms) begin transaction
2934
+ ------------------------------------------------------
2935
+ RockMotive::ContextTest: test_#execute_with_unextended
2936
+ ------------------------------------------------------
2937
+  (0.1ms) rollback transaction
2938
+  (0.0ms) begin transaction
2939
+ --------------------------------------------------
2940
+ RockMotive::ContextTest: test_#execute_with_extend
2941
+ --------------------------------------------------
2942
+  (0.1ms) rollback transaction
2943
+  (0.0ms) begin transaction
2944
+ -------------------------------------------------
2945
+ RockMotive::ContextTest: test_#execute_with_scope
2946
+ -------------------------------------------------
2947
+  (0.1ms) rollback transaction
2948
+  (0.0ms) begin transaction
2949
+ -------------------------------------
2950
+ RockMotive::ContextTest: test_.actors
2951
+ -------------------------------------
2952
+  (0.1ms) rollback transaction
2953
+  (0.0ms) begin transaction
2954
+ ------------------------------------------------------------
2955
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
2956
+ ------------------------------------------------------------
2957
+  (0.1ms) rollback transaction
2958
+  (0.0ms) begin transaction
2959
+ -------------------------------------
2960
+ RockMotive::ContextTest: test_.scopes
2961
+ -------------------------------------
2962
+  (0.1ms) rollback transaction
2963
+  (0.0ms) begin transaction
2964
+ ----------------------------------------------------
2965
+ RockMotive::ContextTest: test_.execute_with_override
2966
+ ----------------------------------------------------
2967
+  (0.1ms) rollback transaction
2968
+  (0.1ms) begin transaction
2969
+ --------------------------------------
2970
+ RockMotive::ContextTest: test_.execute
2971
+ --------------------------------------
2972
+  (0.1ms) rollback transaction
2973
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2974
+  (0.1ms) begin transaction
2975
+ -------------------------------------
2976
+ RockMotive::ContextTest: test_.actors
2977
+ -------------------------------------
2978
+  (0.1ms) rollback transaction
2979
+  (0.0ms) begin transaction
2980
+ -------------------------------------------------
2981
+ RockMotive::ContextTest: test_#execute_with_scope
2982
+ -------------------------------------------------
2983
+  (0.1ms) rollback transaction
2984
+  (0.0ms) begin transaction
2985
+ ------------------------------------------------------
2986
+ RockMotive::ContextTest: test_#execute_with_unextended
2987
+ ------------------------------------------------------
2988
+  (0.0ms) rollback transaction
2989
+  (0.0ms) begin transaction
2990
+ --------------------------------------------------
2991
+ RockMotive::ContextTest: test_#execute_with_extend
2992
+ --------------------------------------------------
2993
+  (0.1ms) rollback transaction
2994
+  (0.0ms) begin transaction
2995
+ ------------------------------------------------------------
2996
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
2997
+ ------------------------------------------------------------
2998
+  (0.1ms) rollback transaction
2999
+  (0.0ms) begin transaction
3000
+ ----------------------------------------------------
3001
+ RockMotive::ContextTest: test_.execute_with_override
3002
+ ----------------------------------------------------
3003
+  (0.1ms) rollback transaction
3004
+  (0.1ms) begin transaction
3005
+ --------------------------------------
3006
+ RockMotive::ContextTest: test_.execute
3007
+ --------------------------------------
3008
+  (0.1ms) rollback transaction
3009
+  (0.1ms) begin transaction
3010
+ -------------------------------------
3011
+ RockMotive::ContextTest: test_.scopes
3012
+ -------------------------------------
3013
+  (0.0ms) rollback transaction
3014
+  (0.0ms) begin transaction
3015
+ --------------------------
3016
+ RockMotiveTest: test_truth
3017
+ --------------------------
3018
+  (0.0ms) rollback transaction
3019
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3020
+  (0.1ms) begin transaction
3021
+ ------------------------------------------------------
3022
+ RockMotive::ContextTest: test_#execute_with_unextended
3023
+ ------------------------------------------------------
3024
+  (0.1ms) rollback transaction
3025
+  (0.0ms) begin transaction
3026
+ --------------------------------------------------
3027
+ RockMotive::ContextTest: test_#execute_with_extend
3028
+ --------------------------------------------------
3029
+  (0.1ms) rollback transaction
3030
+  (0.0ms) begin transaction
3031
+ ----------------------------------------------------
3032
+ RockMotive::ContextTest: test_.execute_with_override
3033
+ ----------------------------------------------------
3034
+  (0.0ms) rollback transaction
3035
+  (0.0ms) begin transaction
3036
+ ------------------------------------------------------------
3037
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3038
+ ------------------------------------------------------------
3039
+  (0.1ms) rollback transaction
3040
+  (0.0ms) begin transaction
3041
+ -------------------------------------------------
3042
+ RockMotive::ContextTest: test_#execute_with_scope
3043
+ -------------------------------------------------
3044
+  (0.1ms) rollback transaction
3045
+  (0.1ms) begin transaction
3046
+ --------------------------------------
3047
+ RockMotive::ContextTest: test_.execute
3048
+ --------------------------------------
3049
+  (0.1ms) rollback transaction
3050
+  (0.1ms) begin transaction
3051
+ -------------------------------------
3052
+ RockMotive::ContextTest: test_.actors
3053
+ -------------------------------------
3054
+  (0.1ms) rollback transaction
3055
+  (0.1ms) begin transaction
3056
+ -------------------------------------
3057
+ RockMotive::ContextTest: test_.scopes
3058
+ -------------------------------------
3059
+  (0.1ms) rollback transaction
3060
+  (0.1ms) begin transaction
3061
+ --------------------------
3062
+ RockMotiveTest: test_truth
3063
+ --------------------------
3064
+  (0.1ms) rollback transaction
3065
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3066
+  (0.1ms) begin transaction
3067
+ --------------------------
3068
+ RockMotiveTest: test_truth
3069
+ --------------------------
3070
+  (0.0ms) rollback transaction
3071
+  (0.0ms) begin transaction
3072
+ ------------------------------------------------------
3073
+ RockMotive::ContextTest: test_#execute_with_unextended
3074
+ ------------------------------------------------------
3075
+  (0.1ms) rollback transaction
3076
+  (0.0ms) begin transaction
3077
+ ----------------------------------------------------
3078
+ RockMotive::ContextTest: test_.execute_with_override
3079
+ ----------------------------------------------------
3080
+  (0.0ms) rollback transaction
3081
+  (0.0ms) begin transaction
3082
+ -------------------------------------
3083
+ RockMotive::ContextTest: test_.actors
3084
+ -------------------------------------
3085
+  (0.0ms) rollback transaction
3086
+  (0.0ms) begin transaction
3087
+ -------------------------------------
3088
+ RockMotive::ContextTest: test_.scopes
3089
+ -------------------------------------
3090
+  (0.0ms) rollback transaction
3091
+  (0.0ms) begin transaction
3092
+ --------------------------------------------------
3093
+ RockMotive::ContextTest: test_#execute_with_extend
3094
+ --------------------------------------------------
3095
+  (0.0ms) rollback transaction
3096
+  (0.0ms) begin transaction
3097
+ ------------------------------------------------------------
3098
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3099
+ ------------------------------------------------------------
3100
+  (0.0ms) rollback transaction
3101
+  (0.0ms) begin transaction
3102
+ --------------------------------------
3103
+ RockMotive::ContextTest: test_.execute
3104
+ --------------------------------------
3105
+  (0.0ms) rollback transaction
3106
+  (0.0ms) begin transaction
3107
+ -------------------------------------------------
3108
+ RockMotive::ContextTest: test_#execute_with_scope
3109
+ -------------------------------------------------
3110
+  (0.0ms) rollback transaction
3111
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3112
+  (0.1ms) begin transaction
3113
+ ------------------------------------------------------------
3114
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3115
+ ------------------------------------------------------------
3116
+  (0.1ms) rollback transaction
3117
+  (0.0ms) begin transaction
3118
+ --------------------------------------
3119
+ RockMotive::ContextTest: test_.execute
3120
+ --------------------------------------
3121
+  (0.0ms) rollback transaction
3122
+  (0.0ms) begin transaction
3123
+ --------------------------------------------------
3124
+ RockMotive::ContextTest: test_#execute_with_extend
3125
+ --------------------------------------------------
3126
+  (0.0ms) rollback transaction
3127
+  (0.0ms) begin transaction
3128
+ ------------------------------------------------------
3129
+ RockMotive::ContextTest: test_#execute_with_unextended
3130
+ ------------------------------------------------------
3131
+  (0.0ms) rollback transaction
3132
+  (0.0ms) begin transaction
3133
+ -------------------------------------------------
3134
+ RockMotive::ContextTest: test_#execute_with_scope
3135
+ -------------------------------------------------
3136
+  (0.0ms) rollback transaction
3137
+  (0.0ms) begin transaction
3138
+ -------------------------------------
3139
+ RockMotive::ContextTest: test_.scopes
3140
+ -------------------------------------
3141
+  (0.0ms) rollback transaction
3142
+  (0.0ms) begin transaction
3143
+ ----------------------------------------------------
3144
+ RockMotive::ContextTest: test_.execute_with_override
3145
+ ----------------------------------------------------
3146
+  (0.0ms) rollback transaction
3147
+  (0.0ms) begin transaction
3148
+ -------------------------------------
3149
+ RockMotive::ContextTest: test_.actors
3150
+ -------------------------------------
3151
+  (0.0ms) rollback transaction
3152
+  (0.0ms) begin transaction
3153
+ --------------------------
3154
+ RockMotiveTest: test_truth
3155
+ --------------------------
3156
+  (0.0ms) rollback transaction
3157
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3158
+  (0.1ms) begin transaction
3159
+ --------------------------
3160
+ RockMotiveTest: test_truth
3161
+ --------------------------
3162
+  (0.1ms) rollback transaction
3163
+  (0.0ms) begin transaction
3164
+ -------------------------------------
3165
+ RockMotive::ContextTest: test_.actors
3166
+ -------------------------------------
3167
+  (0.1ms) rollback transaction
3168
+  (0.0ms) begin transaction
3169
+ ------------------------------------------------------------
3170
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3171
+ ------------------------------------------------------------
3172
+  (0.1ms) rollback transaction
3173
+  (0.0ms) begin transaction
3174
+ ------------------------------------------------------
3175
+ RockMotive::ContextTest: test_#execute_with_unextended
3176
+ ------------------------------------------------------
3177
+  (0.1ms) rollback transaction
3178
+  (0.0ms) begin transaction
3179
+ --------------------------------------
3180
+ RockMotive::ContextTest: test_.execute
3181
+ --------------------------------------
3182
+  (0.0ms) rollback transaction
3183
+  (0.0ms) begin transaction
3184
+ ----------------------------------------------------
3185
+ RockMotive::ContextTest: test_.execute_with_override
3186
+ ----------------------------------------------------
3187
+  (0.1ms) rollback transaction
3188
+  (0.0ms) begin transaction
3189
+ -------------------------------------------------
3190
+ RockMotive::ContextTest: test_#execute_with_scope
3191
+ -------------------------------------------------
3192
+  (0.1ms) rollback transaction
3193
+  (0.0ms) begin transaction
3194
+ -------------------------------------
3195
+ RockMotive::ContextTest: test_.scopes
3196
+ -------------------------------------
3197
+  (0.0ms) rollback transaction
3198
+  (0.0ms) begin transaction
3199
+ --------------------------------------------------
3200
+ RockMotive::ContextTest: test_#execute_with_extend
3201
+ --------------------------------------------------
3202
+  (0.1ms) rollback transaction
3203
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3204
+  (0.1ms) begin transaction
3205
+ ------------------------------------------------------
3206
+ RockMotive::ContextTest: test_#execute_with_unextended
3207
+ ------------------------------------------------------
3208
+  (0.1ms) rollback transaction
3209
+  (0.1ms) begin transaction
3210
+ ----------------------------------------------------
3211
+ RockMotive::ContextTest: test_.execute_with_override
3212
+ ----------------------------------------------------
3213
+  (0.0ms) rollback transaction
3214
+  (0.0ms) begin transaction
3215
+ -------------------------------------
3216
+ RockMotive::ContextTest: test_.scopes
3217
+ -------------------------------------
3218
+  (0.0ms) rollback transaction
3219
+  (0.1ms) begin transaction
3220
+ -------------------------------------------------
3221
+ RockMotive::ContextTest: test_#execute_with_scope
3222
+ -------------------------------------------------
3223
+  (0.0ms) rollback transaction
3224
+  (0.1ms) begin transaction
3225
+ --------------------------------------
3226
+ RockMotive::ContextTest: test_.execute
3227
+ --------------------------------------
3228
+  (0.1ms) rollback transaction
3229
+  (0.0ms) begin transaction
3230
+ -------------------------------------
3231
+ RockMotive::ContextTest: test_.actors
3232
+ -------------------------------------
3233
+  (0.1ms) rollback transaction
3234
+  (0.0ms) begin transaction
3235
+ --------------------------------------------------
3236
+ RockMotive::ContextTest: test_#execute_with_extend
3237
+ --------------------------------------------------
3238
+  (0.0ms) rollback transaction
3239
+  (0.0ms) begin transaction
3240
+ ------------------------------------------------------------
3241
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3242
+ ------------------------------------------------------------
3243
+  (0.1ms) rollback transaction
3244
+  (0.0ms) begin transaction
3245
+ --------------------------
3246
+ RockMotiveTest: test_truth
3247
+ --------------------------
3248
+  (0.0ms) rollback transaction
3249
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3250
+  (0.1ms) begin transaction
3251
+ --------------------------
3252
+ RockMotiveTest: test_truth
3253
+ --------------------------
3254
+  (0.0ms) rollback transaction
3255
+  (0.0ms) begin transaction
3256
+ -------------------------------------
3257
+ RockMotive::ContextTest: test_.scopes
3258
+ -------------------------------------
3259
+  (0.1ms) rollback transaction
3260
+  (0.0ms) begin transaction
3261
+ --------------------------------------
3262
+ RockMotive::ContextTest: test_.execute
3263
+ --------------------------------------
3264
+  (0.0ms) rollback transaction
3265
+  (0.1ms) begin transaction
3266
+ ------------------------------------------------------------
3267
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3268
+ ------------------------------------------------------------
3269
+  (0.1ms) rollback transaction
3270
+  (0.1ms) begin transaction
3271
+ ----------------------------------------------------
3272
+ RockMotive::ContextTest: test_.execute_with_override
3273
+ ----------------------------------------------------
3274
+  (0.0ms) rollback transaction
3275
+  (0.1ms) begin transaction
3276
+ -------------------------------------------------
3277
+ RockMotive::ContextTest: test_#execute_with_scope
3278
+ -------------------------------------------------
3279
+  (0.1ms) rollback transaction
3280
+  (0.1ms) begin transaction
3281
+ --------------------------------------------------
3282
+ RockMotive::ContextTest: test_#execute_with_extend
3283
+ --------------------------------------------------
3284
+  (0.1ms) rollback transaction
3285
+  (0.1ms) begin transaction
3286
+ ------------------------------------------------------
3287
+ RockMotive::ContextTest: test_#execute_with_unextended
3288
+ ------------------------------------------------------
3289
+  (0.1ms) rollback transaction
3290
+  (0.0ms) begin transaction
3291
+ -------------------------------------
3292
+ RockMotive::ContextTest: test_.actors
3293
+ -------------------------------------
3294
+  (0.1ms) rollback transaction
3295
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3296
+  (0.1ms) begin transaction
3297
+ -------------------------------------
3298
+ RockMotive::ResolverTest: test_.roles
3299
+ -------------------------------------
3300
+  (0.1ms) rollback transaction
3301
+  (0.0ms) begin transaction
3302
+ --------------------------
3303
+ RockMotiveTest: test_truth
3304
+ --------------------------
3305
+  (0.0ms) rollback transaction
3306
+  (0.0ms) begin transaction
3307
+ ------------------------------------------------------------
3308
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3309
+ ------------------------------------------------------------
3310
+  (0.1ms) rollback transaction
3311
+  (0.1ms) begin transaction
3312
+ -------------------------------------
3313
+ RockMotive::ContextTest: test_.scopes
3314
+ -------------------------------------
3315
+  (0.1ms) rollback transaction
3316
+  (0.0ms) begin transaction
3317
+ -------------------------------------------------
3318
+ RockMotive::ContextTest: test_#execute_with_scope
3319
+ -------------------------------------------------
3320
+  (0.1ms) rollback transaction
3321
+  (0.0ms) begin transaction
3322
+ ------------------------------------------------------
3323
+ RockMotive::ContextTest: test_#execute_with_unextended
3324
+ ------------------------------------------------------
3325
+  (0.0ms) rollback transaction
3326
+  (0.0ms) begin transaction
3327
+ ----------------------------------------------------
3328
+ RockMotive::ContextTest: test_.execute_with_override
3329
+ ----------------------------------------------------
3330
+  (0.0ms) rollback transaction
3331
+  (0.0ms) begin transaction
3332
+ -------------------------------------
3333
+ RockMotive::ContextTest: test_.actors
3334
+ -------------------------------------
3335
+  (0.1ms) rollback transaction
3336
+  (0.1ms) begin transaction
3337
+ --------------------------------------
3338
+ RockMotive::ContextTest: test_.execute
3339
+ --------------------------------------
3340
+  (0.1ms) rollback transaction
3341
+  (0.0ms) begin transaction
3342
+ --------------------------------------------------
3343
+ RockMotive::ContextTest: test_#execute_with_extend
3344
+ --------------------------------------------------
3345
+  (0.1ms) rollback transaction
3346
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3347
+  (0.1ms) begin transaction
3348
+ --------------------------
3349
+ RockMotiveTest: test_truth
3350
+ --------------------------
3351
+  (0.0ms) rollback transaction
3352
+  (0.0ms) begin transaction
3353
+ -------------------------------------
3354
+ RockMotive::ResolverTest: test_.roles
3355
+ -------------------------------------
3356
+  (0.1ms) rollback transaction
3357
+  (0.0ms) begin transaction
3358
+ -------------------------------------
3359
+ RockMotive::ContextTest: test_.scopes
3360
+ -------------------------------------
3361
+  (0.1ms) rollback transaction
3362
+  (0.0ms) begin transaction
3363
+ --------------------------------------
3364
+ RockMotive::ContextTest: test_.execute
3365
+ --------------------------------------
3366
+  (0.0ms) rollback transaction
3367
+  (0.0ms) begin transaction
3368
+ -------------------------------------------------
3369
+ RockMotive::ContextTest: test_#execute_with_scope
3370
+ -------------------------------------------------
3371
+  (0.1ms) rollback transaction
3372
+  (0.1ms) begin transaction
3373
+ ----------------------------------------------------
3374
+ RockMotive::ContextTest: test_.execute_with_override
3375
+ ----------------------------------------------------
3376
+  (0.0ms) rollback transaction
3377
+  (0.0ms) begin transaction
3378
+ ------------------------------------------------------
3379
+ RockMotive::ContextTest: test_#execute_with_unextended
3380
+ ------------------------------------------------------
3381
+  (0.1ms) rollback transaction
3382
+  (0.0ms) begin transaction
3383
+ --------------------------------------------------
3384
+ RockMotive::ContextTest: test_#execute_with_extend
3385
+ --------------------------------------------------
3386
+  (0.1ms) rollback transaction
3387
+  (0.1ms) begin transaction
3388
+ ------------------------------------------------------------
3389
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3390
+ ------------------------------------------------------------
3391
+  (0.1ms) rollback transaction
3392
+  (0.1ms) begin transaction
3393
+ -------------------------------------
3394
+ RockMotive::ContextTest: test_.actors
3395
+ -------------------------------------
3396
+  (0.1ms) rollback transaction
3397
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3398
+  (0.1ms) begin transaction
3399
+ --------------------------
3400
+ RockMotiveTest: test_truth
3401
+ --------------------------
3402
+  (0.0ms) rollback transaction
3403
+  (0.0ms) begin transaction
3404
+ --------------------------------------------------
3405
+ RockMotive::ContextTest: test_#execute_with_extend
3406
+ --------------------------------------------------
3407
+  (0.1ms) rollback transaction
3408
+  (0.1ms) begin transaction
3409
+ ----------------------------------------------------
3410
+ RockMotive::ContextTest: test_.execute_with_override
3411
+ ----------------------------------------------------
3412
+  (0.1ms) rollback transaction
3413
+  (0.0ms) begin transaction
3414
+ ------------------------------------------------------------
3415
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3416
+ ------------------------------------------------------------
3417
+  (0.1ms) rollback transaction
3418
+  (0.0ms) begin transaction
3419
+ ------------------------------------------------------
3420
+ RockMotive::ContextTest: test_#execute_with_unextended
3421
+ ------------------------------------------------------
3422
+  (0.0ms) rollback transaction
3423
+  (0.0ms) begin transaction
3424
+ --------------------------------------
3425
+ RockMotive::ContextTest: test_.execute
3426
+ --------------------------------------
3427
+  (0.0ms) rollback transaction
3428
+  (0.0ms) begin transaction
3429
+ -------------------------------------------------
3430
+ RockMotive::ContextTest: test_#execute_with_scope
3431
+ -------------------------------------------------
3432
+  (0.0ms) rollback transaction
3433
+  (0.0ms) begin transaction
3434
+ -------------------------------------
3435
+ RockMotive::ContextTest: test_.actors
3436
+ -------------------------------------
3437
+  (0.1ms) rollback transaction
3438
+  (0.0ms) begin transaction
3439
+ -------------------------------------
3440
+ RockMotive::ContextTest: test_.scopes
3441
+ -------------------------------------
3442
+  (0.0ms) rollback transaction
3443
+  (0.0ms) begin transaction
3444
+ -------------------------------------
3445
+ RockMotive::ResolverTest: test_.roles
3446
+ -------------------------------------
3447
+  (0.1ms) rollback transaction
3448
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3449
+  (0.1ms) begin transaction
3450
+ -------------------------------------
3451
+ RockMotive::ContextTest: test_.scopes
3452
+ -------------------------------------
3453
+  (0.1ms) rollback transaction
3454
+  (0.1ms) begin transaction
3455
+ ----------------------------------------------------
3456
+ RockMotive::ContextTest: test_.execute_with_override
3457
+ ----------------------------------------------------
3458
+  (0.1ms) rollback transaction
3459
+  (0.0ms) begin transaction
3460
+ -------------------------------------------------
3461
+ RockMotive::ContextTest: test_#execute_with_scope
3462
+ -------------------------------------------------
3463
+  (0.1ms) rollback transaction
3464
+  (0.0ms) begin transaction
3465
+ --------------------------------------
3466
+ RockMotive::ContextTest: test_.execute
3467
+ --------------------------------------
3468
+  (0.0ms) rollback transaction
3469
+  (0.0ms) begin transaction
3470
+ ------------------------------------------------------------
3471
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3472
+ ------------------------------------------------------------
3473
+  (0.1ms) rollback transaction
3474
+  (0.1ms) begin transaction
3475
+ ------------------------------------------------------
3476
+ RockMotive::ContextTest: test_#execute_with_unextended
3477
+ ------------------------------------------------------
3478
+  (0.1ms) rollback transaction
3479
+  (0.0ms) begin transaction
3480
+ --------------------------------------------------
3481
+ RockMotive::ContextTest: test_#execute_with_extend
3482
+ --------------------------------------------------
3483
+  (0.1ms) rollback transaction
3484
+  (0.1ms) begin transaction
3485
+ -------------------------------------
3486
+ RockMotive::ContextTest: test_.actors
3487
+ -------------------------------------
3488
+  (0.1ms) rollback transaction
3489
+  (0.0ms) begin transaction
3490
+ --------------------------
3491
+ RockMotiveTest: test_truth
3492
+ --------------------------
3493
+  (0.0ms) rollback transaction
3494
+  (0.0ms) begin transaction
3495
+ -------------------------------------
3496
+ RockMotive::ResolverTest: test_.roles
3497
+ -------------------------------------
3498
+  (0.1ms) rollback transaction
3499
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3500
+  (0.1ms) begin transaction
3501
+ --------------------------
3502
+ RockMotiveTest: test_truth
3503
+ --------------------------
3504
+  (0.0ms) rollback transaction
3505
+  (0.0ms) begin transaction
3506
+ -------------------------------------
3507
+ RockMotive::ResolverTest: test_.roles
3508
+ -------------------------------------
3509
+  (0.1ms) rollback transaction
3510
+  (0.0ms) begin transaction
3511
+ ------------------------------------------------------
3512
+ RockMotive::ContextTest: test_#execute_with_unextended
3513
+ ------------------------------------------------------
3514
+  (0.1ms) rollback transaction
3515
+  (0.1ms) begin transaction
3516
+ ----------------------------------------------------
3517
+ RockMotive::ContextTest: test_.execute_with_override
3518
+ ----------------------------------------------------
3519
+  (0.1ms) rollback transaction
3520
+  (0.1ms) begin transaction
3521
+ --------------------------------------
3522
+ RockMotive::ContextTest: test_.execute
3523
+ --------------------------------------
3524
+  (0.1ms) rollback transaction
3525
+  (0.0ms) begin transaction
3526
+ -------------------------------------
3527
+ RockMotive::ContextTest: test_.scopes
3528
+ -------------------------------------
3529
+  (0.0ms) rollback transaction
3530
+  (0.1ms) begin transaction
3531
+ --------------------------------------------------
3532
+ RockMotive::ContextTest: test_#execute_with_extend
3533
+ --------------------------------------------------
3534
+  (0.1ms) rollback transaction
3535
+  (0.1ms) begin transaction
3536
+ -------------------------------------------------
3537
+ RockMotive::ContextTest: test_#execute_with_scope
3538
+ -------------------------------------------------
3539
+  (0.1ms) rollback transaction
3540
+  (0.0ms) begin transaction
3541
+ ------------------------------------------------------------
3542
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3543
+ ------------------------------------------------------------
3544
+  (0.1ms) rollback transaction
3545
+  (0.0ms) begin transaction
3546
+ -------------------------------------
3547
+ RockMotive::ContextTest: test_.actors
3548
+ -------------------------------------
3549
+  (0.1ms) rollback transaction
3550
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3551
+  (0.1ms) begin transaction
3552
+ -------------------------------------
3553
+ RockMotive::ResolverTest: test_.roles
3554
+ -------------------------------------
3555
+  (0.1ms) rollback transaction
3556
+  (0.0ms) begin transaction
3557
+ --------------------------
3558
+ RockMotiveTest: test_truth
3559
+ --------------------------
3560
+  (0.0ms) rollback transaction
3561
+  (0.0ms) begin transaction
3562
+ ----------------------------------------------
3563
+ RockMotive::AttributeTest: test_.attr_accessor
3564
+ ----------------------------------------------
3565
+  (0.1ms) rollback transaction
3566
+  (0.0ms) begin transaction
3567
+ ------------------------------------------------------
3568
+ RockMotive::ContextTest: test_#execute_with_unextended
3569
+ ------------------------------------------------------
3570
+  (0.1ms) rollback transaction
3571
+  (0.0ms) begin transaction
3572
+ --------------------------------------------------
3573
+ RockMotive::ContextTest: test_#execute_with_extend
3574
+ --------------------------------------------------
3575
+  (0.1ms) rollback transaction
3576
+  (0.1ms) begin transaction
3577
+ --------------------------------------
3578
+ RockMotive::ContextTest: test_.execute
3579
+ --------------------------------------
3580
+  (0.0ms) rollback transaction
3581
+  (0.0ms) begin transaction
3582
+ ----------------------------------------------------
3583
+ RockMotive::ContextTest: test_.execute_with_override
3584
+ ----------------------------------------------------
3585
+  (0.0ms) rollback transaction
3586
+  (0.0ms) begin transaction
3587
+ ------------------------------------------------------------
3588
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3589
+ ------------------------------------------------------------
3590
+  (0.1ms) rollback transaction
3591
+  (0.0ms) begin transaction
3592
+ -------------------------------------------------
3593
+ RockMotive::ContextTest: test_#execute_with_scope
3594
+ -------------------------------------------------
3595
+  (0.1ms) rollback transaction
3596
+  (0.0ms) begin transaction
3597
+ -------------------------------------
3598
+ RockMotive::ContextTest: test_.actors
3599
+ -------------------------------------
3600
+  (0.1ms) rollback transaction
3601
+  (0.1ms) begin transaction
3602
+ -------------------------------------
3603
+ RockMotive::ContextTest: test_.scopes
3604
+ -------------------------------------
3605
+  (0.1ms) rollback transaction
3606
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3607
+  (0.1ms) begin transaction
3608
+ -------------------------------------
3609
+ RockMotive::ResolverTest: test_.roles
3610
+ -------------------------------------
3611
+  (0.1ms) rollback transaction
3612
+  (0.0ms) begin transaction
3613
+ ------------------------------------------------------
3614
+ RockMotive::ContextTest: test_#execute_with_unextended
3615
+ ------------------------------------------------------
3616
+  (0.1ms) rollback transaction
3617
+  (0.0ms) begin transaction
3618
+ ------------------------------------------------------------
3619
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3620
+ ------------------------------------------------------------
3621
+  (0.1ms) rollback transaction
3622
+  (0.0ms) begin transaction
3623
+ -------------------------------------
3624
+ RockMotive::ContextTest: test_.scopes
3625
+ -------------------------------------
3626
+  (0.1ms) rollback transaction
3627
+  (0.0ms) begin transaction
3628
+ ----------------------------------------------------
3629
+ RockMotive::ContextTest: test_.execute_with_override
3630
+ ----------------------------------------------------
3631
+  (0.0ms) rollback transaction
3632
+  (0.0ms) begin transaction
3633
+ -------------------------------------------------
3634
+ RockMotive::ContextTest: test_#execute_with_scope
3635
+ -------------------------------------------------
3636
+  (0.0ms) rollback transaction
3637
+  (0.0ms) begin transaction
3638
+ --------------------------------------
3639
+ RockMotive::ContextTest: test_.execute
3640
+ --------------------------------------
3641
+  (0.1ms) rollback transaction
3642
+  (0.1ms) begin transaction
3643
+ --------------------------------------------------
3644
+ RockMotive::ContextTest: test_#execute_with_extend
3645
+ --------------------------------------------------
3646
+  (0.1ms) rollback transaction
3647
+  (0.0ms) begin transaction
3648
+ -------------------------------------
3649
+ RockMotive::ContextTest: test_.actors
3650
+ -------------------------------------
3651
+  (0.1ms) rollback transaction
3652
+  (0.1ms) begin transaction
3653
+ ----------------------------------------------
3654
+ RockMotive::AttributeTest: test_.attr_accessor
3655
+ ----------------------------------------------
3656
+  (0.1ms) rollback transaction
3657
+  (0.1ms) begin transaction
3658
+ --------------------------
3659
+ RockMotiveTest: test_truth
3660
+ --------------------------
3661
+  (0.0ms) rollback transaction
3662
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3663
+  (0.1ms) begin transaction
3664
+ ----------------------------------------------
3665
+ RockMotive::AttributeTest: test_.attr_accessor
3666
+ ----------------------------------------------
3667
+  (0.1ms) rollback transaction
3668
+  (0.0ms) begin transaction
3669
+ -------------------------------------
3670
+ RockMotive::ResolverTest: test_.roles
3671
+ -------------------------------------
3672
+  (0.1ms) rollback transaction
3673
+  (0.0ms) begin transaction
3674
+ --------------------------
3675
+ RockMotiveTest: test_truth
3676
+ --------------------------
3677
+  (0.0ms) rollback transaction
3678
+  (0.0ms) begin transaction
3679
+ --------------------------------------------------
3680
+ RockMotive::ContextTest: test_#execute_with_extend
3681
+ --------------------------------------------------
3682
+  (0.1ms) rollback transaction
3683
+  (0.0ms) begin transaction
3684
+ ------------------------------------------------------------
3685
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3686
+ ------------------------------------------------------------
3687
+  (0.1ms) rollback transaction
3688
+  (0.0ms) begin transaction
3689
+ ----------------------------------------------------
3690
+ RockMotive::ContextTest: test_.execute_with_override
3691
+ ----------------------------------------------------
3692
+  (0.1ms) rollback transaction
3693
+  (0.1ms) begin transaction
3694
+ --------------------------------------
3695
+ RockMotive::ContextTest: test_.execute
3696
+ --------------------------------------
3697
+  (0.0ms) rollback transaction
3698
+  (0.0ms) begin transaction
3699
+ ------------------------------------------------------
3700
+ RockMotive::ContextTest: test_#execute_with_unextended
3701
+ ------------------------------------------------------
3702
+  (0.0ms) rollback transaction
3703
+  (0.1ms) begin transaction
3704
+ -------------------------------------------------
3705
+ RockMotive::ContextTest: test_#execute_with_scope
3706
+ -------------------------------------------------
3707
+  (0.0ms) rollback transaction
3708
+  (0.0ms) begin transaction
3709
+ -------------------------------------
3710
+ RockMotive::ContextTest: test_.actors
3711
+ -------------------------------------
3712
+  (0.1ms) rollback transaction
3713
+  (0.0ms) begin transaction
3714
+ -------------------------------------
3715
+ RockMotive::ContextTest: test_.scopes
3716
+ -------------------------------------
3717
+  (0.1ms) rollback transaction
3718
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3719
+  (0.1ms) begin transaction
3720
+ --------------------------
3721
+ RockMotiveTest: test_truth
3722
+ --------------------------
3723
+  (0.0ms) rollback transaction
3724
+  (0.0ms) begin transaction
3725
+ -------------------------------------
3726
+ RockMotive::ResolverTest: test_.roles
3727
+ -------------------------------------
3728
+  (0.1ms) rollback transaction
3729
+  (0.1ms) begin transaction
3730
+ -------------------------------------
3731
+ RockMotive::ContextTest: test_.actors
3732
+ -------------------------------------
3733
+  (0.1ms) rollback transaction
3734
+  (0.0ms) begin transaction
3735
+ -------------------------------------------------
3736
+ RockMotive::ContextTest: test_#execute_with_scope
3737
+ -------------------------------------------------
3738
+  (0.1ms) rollback transaction
3739
+  (0.0ms) begin transaction
3740
+ --------------------------------------
3741
+ RockMotive::ContextTest: test_.execute
3742
+ --------------------------------------
3743
+  (0.0ms) rollback transaction
3744
+  (0.0ms) begin transaction
3745
+ --------------------------------------------------
3746
+ RockMotive::ContextTest: test_#execute_with_extend
3747
+ --------------------------------------------------
3748
+  (0.1ms) rollback transaction
3749
+  (0.1ms) begin transaction
3750
+ ----------------------------------------------------
3751
+ RockMotive::ContextTest: test_.execute_with_override
3752
+ ----------------------------------------------------
3753
+  (0.1ms) rollback transaction
3754
+  (0.0ms) begin transaction
3755
+ ------------------------------------------------------
3756
+ RockMotive::ContextTest: test_#execute_with_unextended
3757
+ ------------------------------------------------------
3758
+  (0.1ms) rollback transaction
3759
+  (0.0ms) begin transaction
3760
+ ------------------------------------------------------------
3761
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3762
+ ------------------------------------------------------------
3763
+  (0.1ms) rollback transaction
3764
+  (0.1ms) begin transaction
3765
+ -------------------------------------
3766
+ RockMotive::ContextTest: test_.scopes
3767
+ -------------------------------------
3768
+  (0.1ms) rollback transaction
3769
+  (0.1ms) begin transaction
3770
+ ----------------------------------------------
3771
+ RockMotive::AttributeTest: test_.attr_accessor
3772
+ ----------------------------------------------
3773
+  (0.1ms) rollback transaction
3774
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3775
+  (0.2ms) begin transaction
3776
+ ----------------------------------------------
3777
+ RockMotive::AttributeTest: test_.attr_accessor
3778
+ ----------------------------------------------
3779
+  (0.1ms) rollback transaction
3780
+  (0.0ms) begin transaction
3781
+ --------------------------
3782
+ RockMotiveTest: test_truth
3783
+ --------------------------
3784
+  (0.0ms) rollback transaction
3785
+  (0.0ms) begin transaction
3786
+ -------------------------------------
3787
+ RockMotive::ResolverTest: test_.roles
3788
+ -------------------------------------
3789
+  (0.1ms) rollback transaction
3790
+  (0.0ms) begin transaction
3791
+ ------------------------------------------------------------
3792
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3793
+ ------------------------------------------------------------
3794
+  (0.1ms) rollback transaction
3795
+  (0.1ms) begin transaction
3796
+ -------------------------------------
3797
+ RockMotive::ContextTest: test_.actors
3798
+ -------------------------------------
3799
+  (0.1ms) rollback transaction
3800
+  (0.1ms) begin transaction
3801
+ ------------------------------------------------------
3802
+ RockMotive::ContextTest: test_#execute_with_unextended
3803
+ ------------------------------------------------------
3804
+  (0.1ms) rollback transaction
3805
+  (0.0ms) begin transaction
3806
+ ----------------------------------------------------
3807
+ RockMotive::ContextTest: test_.execute_with_override
3808
+ ----------------------------------------------------
3809
+  (0.0ms) rollback transaction
3810
+  (0.0ms) begin transaction
3811
+ -------------------------------------
3812
+ RockMotive::ContextTest: test_.scopes
3813
+ -------------------------------------
3814
+  (0.1ms) rollback transaction
3815
+  (0.0ms) begin transaction
3816
+ --------------------------------------
3817
+ RockMotive::ContextTest: test_.execute
3818
+ --------------------------------------
3819
+  (0.0ms) rollback transaction
3820
+  (0.0ms) begin transaction
3821
+ -------------------------------------------------
3822
+ RockMotive::ContextTest: test_#execute_with_scope
3823
+ -------------------------------------------------
3824
+  (0.0ms) rollback transaction
3825
+  (0.0ms) begin transaction
3826
+ --------------------------------------------------
3827
+ RockMotive::ContextTest: test_#execute_with_extend
3828
+ --------------------------------------------------
3829
+  (0.0ms) rollback transaction
3830
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3831
+  (0.1ms) begin transaction
3832
+ --------------------------------------------------
3833
+ RockMotive::ContextTest: test_#execute_with_extend
3834
+ --------------------------------------------------
3835
+  (0.1ms) rollback transaction
3836
+  (0.1ms) begin transaction
3837
+ ----------------------------------------------------
3838
+ RockMotive::ContextTest: test_.execute_with_override
3839
+ ----------------------------------------------------
3840
+  (0.0ms) rollback transaction
3841
+  (0.0ms) begin transaction
3842
+ -------------------------------------------------
3843
+ RockMotive::ContextTest: test_#execute_with_scope
3844
+ -------------------------------------------------
3845
+  (0.1ms) rollback transaction
3846
+  (0.0ms) begin transaction
3847
+ ------------------------------------------------------------
3848
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3849
+ ------------------------------------------------------------
3850
+  (0.1ms) rollback transaction
3851
+  (0.0ms) begin transaction
3852
+ -------------------------------------
3853
+ RockMotive::ContextTest: test_.actors
3854
+ -------------------------------------
3855
+  (0.1ms) rollback transaction
3856
+  (0.0ms) begin transaction
3857
+ --------------------------------------
3858
+ RockMotive::ContextTest: test_.execute
3859
+ --------------------------------------
3860
+  (0.1ms) rollback transaction
3861
+  (0.0ms) begin transaction
3862
+ ------------------------------------------------------
3863
+ RockMotive::ContextTest: test_#execute_with_unextended
3864
+ ------------------------------------------------------
3865
+  (0.1ms) rollback transaction
3866
+  (0.1ms) begin transaction
3867
+ -------------------------------------
3868
+ RockMotive::ContextTest: test_.scopes
3869
+ -------------------------------------
3870
+  (0.0ms) rollback transaction
3871
+  (0.0ms) begin transaction
3872
+ -------------------------------------
3873
+ RockMotive::ResolverTest: test_.roles
3874
+ -------------------------------------
3875
+  (0.1ms) rollback transaction
3876
+  (0.0ms) begin transaction
3877
+ ----------------------------------------------
3878
+ RockMotive::AttributeTest: test_.attr_accessor
3879
+ ----------------------------------------------
3880
+  (0.1ms) rollback transaction
3881
+  (0.0ms) begin transaction
3882
+ --------------------------
3883
+ RockMotiveTest: test_truth
3884
+ --------------------------
3885
+  (0.0ms) rollback transaction
3886
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3887
+  (0.1ms) begin transaction
3888
+ --------------------------
3889
+ RockMotiveTest: test_truth
3890
+ --------------------------
3891
+  (0.0ms) rollback transaction
3892
+  (0.0ms) begin transaction
3893
+ -------------------------------------
3894
+ RockMotive::ResolverTest: test_.roles
3895
+ -------------------------------------
3896
+  (0.1ms) rollback transaction
3897
+  (0.0ms) begin transaction
3898
+ ----------------------------------------------
3899
+ RockMotive::AttributeTest: test_.attr_accessor
3900
+ ----------------------------------------------
3901
+  (0.0ms) rollback transaction
3902
+  (0.0ms) begin transaction
3903
+ ----------------------------------------------------
3904
+ RockMotive::ContextTest: test_.execute_with_override
3905
+ ----------------------------------------------------
3906
+  (0.1ms) rollback transaction
3907
+  (0.0ms) begin transaction
3908
+ --------------------------------------------------
3909
+ RockMotive::ContextTest: test_#execute_with_extend
3910
+ --------------------------------------------------
3911
+  (0.1ms) rollback transaction
3912
+  (0.0ms) begin transaction
3913
+ -------------------------------------------------
3914
+ RockMotive::ContextTest: test_#execute_with_scope
3915
+ -------------------------------------------------
3916
+  (0.1ms) rollback transaction
3917
+  (0.0ms) begin transaction
3918
+ -------------------------------------
3919
+ RockMotive::ContextTest: test_.scopes
3920
+ -------------------------------------
3921
+  (0.1ms) rollback transaction
3922
+  (0.0ms) begin transaction
3923
+ --------------------------------------
3924
+ RockMotive::ContextTest: test_.execute
3925
+ --------------------------------------
3926
+  (0.1ms) rollback transaction
3927
+  (0.0ms) begin transaction
3928
+ -------------------------------------
3929
+ RockMotive::ContextTest: test_.actors
3930
+ -------------------------------------
3931
+  (0.1ms) rollback transaction
3932
+  (0.0ms) begin transaction
3933
+ ------------------------------------------------------------
3934
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3935
+ ------------------------------------------------------------
3936
+  (0.1ms) rollback transaction
3937
+  (0.0ms) begin transaction
3938
+ ------------------------------------------------------
3939
+ RockMotive::ContextTest: test_#execute_with_unextended
3940
+ ------------------------------------------------------
3941
+  (0.1ms) rollback transaction
3942
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3943
+  (0.1ms) begin transaction
3944
+ --------------------------
3945
+ RockMotiveTest: test_truth
3946
+ --------------------------
3947
+  (0.0ms) rollback transaction
3948
+  (0.0ms) begin transaction
3949
+ -------------------------------------
3950
+ RockMotive::ResolverTest: test_.roles
3951
+ -------------------------------------
3952
+  (0.1ms) rollback transaction
3953
+  (0.1ms) begin transaction
3954
+ ----------------------------------------------
3955
+ RockMotive::AttributeTest: test_.attr_accessor
3956
+ ----------------------------------------------
3957
+  (0.1ms) rollback transaction
3958
+  (0.1ms) begin transaction
3959
+ ----------------------------------------------------
3960
+ RockMotive::ContextTest: test_.execute_with_override
3961
+ ----------------------------------------------------
3962
+  (0.1ms) rollback transaction
3963
+  (0.0ms) begin transaction
3964
+ --------------------------------------
3965
+ RockMotive::ContextTest: test_.execute
3966
+ --------------------------------------
3967
+  (0.1ms) rollback transaction
3968
+  (0.1ms) begin transaction
3969
+ -------------------------------------
3970
+ RockMotive::ContextTest: test_.actors
3971
+ -------------------------------------
3972
+  (0.1ms) rollback transaction
3973
+  (0.0ms) begin transaction
3974
+ -------------------------------------
3975
+ RockMotive::ContextTest: test_.scopes
3976
+ -------------------------------------
3977
+  (0.0ms) rollback transaction
3978
+  (0.0ms) begin transaction
3979
+ ------------------------------------------------------
3980
+ RockMotive::ContextTest: test_#execute_with_unextended
3981
+ ------------------------------------------------------
3982
+  (0.1ms) rollback transaction
3983
+  (0.1ms) begin transaction
3984
+ --------------------------------------------------
3985
+ RockMotive::ContextTest: test_#execute_with_extend
3986
+ --------------------------------------------------
3987
+  (0.1ms) rollback transaction
3988
+  (0.1ms) begin transaction
3989
+ -------------------------------------------------
3990
+ RockMotive::ContextTest: test_#execute_with_scope
3991
+ -------------------------------------------------
3992
+  (0.1ms) rollback transaction
3993
+  (0.0ms) begin transaction
3994
+ ------------------------------------------------------------
3995
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
3996
+ ------------------------------------------------------------
3997
+  (0.1ms) rollback transaction
3998
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3999
+  (0.1ms) begin transaction
4000
+ --------------------------------------
4001
+ RockMotive::ContextTest: test_.execute
4002
+ --------------------------------------
4003
+  (0.0ms) rollback transaction
4004
+  (0.0ms) begin transaction
4005
+ ----------------------------------------------------
4006
+ RockMotive::ContextTest: test_.execute_with_override
4007
+ ----------------------------------------------------
4008
+  (0.0ms) rollback transaction
4009
+  (0.0ms) begin transaction
4010
+ ------------------------------------------------------
4011
+ RockMotive::ContextTest: test_#execute_with_unextended
4012
+ ------------------------------------------------------
4013
+  (0.1ms) rollback transaction
4014
+  (0.0ms) begin transaction
4015
+ -------------------------------------------------
4016
+ RockMotive::ContextTest: test_#execute_with_scope
4017
+ -------------------------------------------------
4018
+  (0.1ms) rollback transaction
4019
+  (0.0ms) begin transaction
4020
+ -------------------------------------
4021
+ RockMotive::ContextTest: test_.actors
4022
+ -------------------------------------
4023
+  (0.1ms) rollback transaction
4024
+  (0.0ms) begin transaction
4025
+ --------------------------------------------------
4026
+ RockMotive::ContextTest: test_#execute_with_extend
4027
+ --------------------------------------------------
4028
+  (0.1ms) rollback transaction
4029
+  (0.1ms) begin transaction
4030
+ ------------------------------------------------------------
4031
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4032
+ ------------------------------------------------------------
4033
+  (0.1ms) rollback transaction
4034
+  (0.1ms) begin transaction
4035
+ -------------------------------------
4036
+ RockMotive::ContextTest: test_.scopes
4037
+ -------------------------------------
4038
+  (0.1ms) rollback transaction
4039
+  (0.0ms) begin transaction
4040
+ -------------------------------------
4041
+ RockMotive::ResolverTest: test_.roles
4042
+ -------------------------------------
4043
+  (0.1ms) rollback transaction
4044
+  (0.0ms) begin transaction
4045
+ --------------------------
4046
+ RockMotiveTest: test_truth
4047
+ --------------------------
4048
+  (0.0ms) rollback transaction
4049
+  (0.0ms) begin transaction
4050
+ ----------------------------------------------
4051
+ RockMotive::AttributeTest: test_.attr_accessor
4052
+ ----------------------------------------------
4053
+  (0.1ms) rollback transaction
4054
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4055
+  (0.1ms) begin transaction
4056
+ ----------------------------------------------
4057
+ RockMotive::AttributeTest: test_.attr_accessor
4058
+ ----------------------------------------------
4059
+  (0.1ms) rollback transaction
4060
+  (0.0ms) begin transaction
4061
+ --------------------------
4062
+ RockMotiveTest: test_truth
4063
+ --------------------------
4064
+  (0.0ms) rollback transaction
4065
+  (0.0ms) begin transaction
4066
+ -------------------------------------
4067
+ RockMotive::ContextTest: test_.actors
4068
+ -------------------------------------
4069
+  (0.1ms) rollback transaction
4070
+  (0.0ms) begin transaction
4071
+ ------------------------------------------------------------
4072
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4073
+ ------------------------------------------------------------
4074
+  (0.1ms) rollback transaction
4075
+  (0.0ms) begin transaction
4076
+ -------------------------------------------------
4077
+ RockMotive::ContextTest: test_#execute_with_scope
4078
+ -------------------------------------------------
4079
+  (0.1ms) rollback transaction
4080
+  (0.0ms) begin transaction
4081
+ ----------------------------------------------------
4082
+ RockMotive::ContextTest: test_.execute_with_override
4083
+ ----------------------------------------------------
4084
+  (0.0ms) rollback transaction
4085
+  (0.1ms) begin transaction
4086
+ -------------------------------------
4087
+ RockMotive::ContextTest: test_.scopes
4088
+ -------------------------------------
4089
+  (0.1ms) rollback transaction
4090
+  (0.0ms) begin transaction
4091
+ --------------------------------------
4092
+ RockMotive::ContextTest: test_.execute
4093
+ --------------------------------------
4094
+  (0.1ms) rollback transaction
4095
+  (0.1ms) begin transaction
4096
+ ------------------------------------------------------
4097
+ RockMotive::ContextTest: test_#execute_with_unextended
4098
+ ------------------------------------------------------
4099
+  (0.1ms) rollback transaction
4100
+  (0.0ms) begin transaction
4101
+ --------------------------------------------------
4102
+ RockMotive::ContextTest: test_#execute_with_extend
4103
+ --------------------------------------------------
4104
+  (0.1ms) rollback transaction
4105
+  (0.0ms) begin transaction
4106
+ -------------------------------------
4107
+ RockMotive::ResolverTest: test_.roles
4108
+ -------------------------------------
4109
+  (0.2ms) rollback transaction
4110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4111
+  (0.1ms) begin transaction
4112
+ -------------------------------------
4113
+ RockMotive::ResolverTest: test_.roles
4114
+ -------------------------------------
4115
+  (0.1ms) rollback transaction
4116
+  (0.1ms) begin transaction
4117
+ --------------------------
4118
+ RockMotiveTest: test_truth
4119
+ --------------------------
4120
+  (0.0ms) rollback transaction
4121
+  (0.0ms) begin transaction
4122
+ ----------------------------------------------
4123
+ RockMotive::AttributeTest: test_.attr_accessor
4124
+ ----------------------------------------------
4125
+  (0.1ms) rollback transaction
4126
+  (0.0ms) begin transaction
4127
+ --------------------------------------------------
4128
+ RockMotive::ContextTest: test_#execute_with_extend
4129
+ --------------------------------------------------
4130
+  (0.1ms) rollback transaction
4131
+  (0.0ms) begin transaction
4132
+ --------------------------------------
4133
+ RockMotive::ContextTest: test_.execute
4134
+ --------------------------------------
4135
+  (0.1ms) rollback transaction
4136
+  (0.1ms) begin transaction
4137
+ ------------------------------------------------------------
4138
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4139
+ ------------------------------------------------------------
4140
+  (0.1ms) rollback transaction
4141
+  (0.0ms) begin transaction
4142
+ -------------------------------------
4143
+ RockMotive::ContextTest: test_.actors
4144
+ -------------------------------------
4145
+  (0.1ms) rollback transaction
4146
+  (0.0ms) begin transaction
4147
+ -------------------------------------
4148
+ RockMotive::ContextTest: test_.scopes
4149
+ -------------------------------------
4150
+  (0.0ms) rollback transaction
4151
+  (0.1ms) begin transaction
4152
+ -------------------------------------------------
4153
+ RockMotive::ContextTest: test_#execute_with_scope
4154
+ -------------------------------------------------
4155
+  (0.1ms) rollback transaction
4156
+  (0.0ms) begin transaction
4157
+ ----------------------------------------------------
4158
+ RockMotive::ContextTest: test_.execute_with_override
4159
+ ----------------------------------------------------
4160
+  (0.1ms) rollback transaction
4161
+  (0.1ms) begin transaction
4162
+ ------------------------------------------------------
4163
+ RockMotive::ContextTest: test_#execute_with_unextended
4164
+ ------------------------------------------------------
4165
+  (0.1ms) rollback transaction
4166
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4167
+  (0.1ms) begin transaction
4168
+ ----------------------------------------------------
4169
+ RockMotive::ContextTest: test_.execute_with_override
4170
+ ----------------------------------------------------
4171
+  (0.1ms) rollback transaction
4172
+  (0.0ms) begin transaction
4173
+ ------------------------------------------------------
4174
+ RockMotive::ContextTest: test_#execute_with_unextended
4175
+ ------------------------------------------------------
4176
+  (0.1ms) rollback transaction
4177
+  (0.1ms) begin transaction
4178
+ -------------------------------------
4179
+ RockMotive::ContextTest: test_.actors
4180
+ -------------------------------------
4181
+  (0.1ms) rollback transaction
4182
+  (0.0ms) begin transaction
4183
+ ------------------------------------------------------------
4184
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4185
+ ------------------------------------------------------------
4186
+  (0.1ms) rollback transaction
4187
+  (0.0ms) begin transaction
4188
+ -------------------------------------------------
4189
+ RockMotive::ContextTest: test_#execute_with_scope
4190
+ -------------------------------------------------
4191
+  (0.1ms) rollback transaction
4192
+  (0.1ms) begin transaction
4193
+ -------------------------------------
4194
+ RockMotive::ContextTest: test_.scopes
4195
+ -------------------------------------
4196
+  (0.1ms) rollback transaction
4197
+  (0.0ms) begin transaction
4198
+ --------------------------------------
4199
+ RockMotive::ContextTest: test_.execute
4200
+ --------------------------------------
4201
+  (0.0ms) rollback transaction
4202
+  (0.0ms) begin transaction
4203
+ --------------------------------------------------
4204
+ RockMotive::ContextTest: test_#execute_with_extend
4205
+ --------------------------------------------------
4206
+  (0.1ms) rollback transaction
4207
+  (0.1ms) begin transaction
4208
+ -------------------------------------
4209
+ RockMotive::ResolverTest: test_.roles
4210
+ -------------------------------------
4211
+  (0.1ms) rollback transaction
4212
+  (0.1ms) begin transaction
4213
+ ----------------------------------------------
4214
+ RockMotive::AttributeTest: test_.attr_accessor
4215
+ ----------------------------------------------
4216
+  (0.1ms) rollback transaction
4217
+  (0.0ms) begin transaction
4218
+ --------------------------
4219
+ RockMotiveTest: test_truth
4220
+ --------------------------
4221
+  (0.0ms) rollback transaction
4222
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4223
+  (0.1ms) begin transaction
4224
+ --------------------------
4225
+ RockMotiveTest: test_truth
4226
+ --------------------------
4227
+  (0.1ms) rollback transaction
4228
+  (0.1ms) begin transaction
4229
+ -------------------------------------
4230
+ RockMotive::ResolverTest: test_.roles
4231
+ -------------------------------------
4232
+  (0.1ms) rollback transaction
4233
+  (0.0ms) begin transaction
4234
+ --------------------------------------
4235
+ RockMotive::ContextTest: test_.execute
4236
+ --------------------------------------
4237
+  (0.1ms) rollback transaction
4238
+  (0.0ms) begin transaction
4239
+ --------------------------------------------------
4240
+ RockMotive::ContextTest: test_#execute_with_extend
4241
+ --------------------------------------------------
4242
+  (0.1ms) rollback transaction
4243
+  (0.0ms) begin transaction
4244
+ ------------------------------------------------------
4245
+ RockMotive::ContextTest: test_#execute_with_unextended
4246
+ ------------------------------------------------------
4247
+  (0.1ms) rollback transaction
4248
+  (0.1ms) begin transaction
4249
+ -------------------------------------
4250
+ RockMotive::ContextTest: test_.scopes
4251
+ -------------------------------------
4252
+  (0.1ms) rollback transaction
4253
+  (0.0ms) begin transaction
4254
+ -------------------------------------------------
4255
+ RockMotive::ContextTest: test_#execute_with_scope
4256
+ -------------------------------------------------
4257
+  (0.1ms) rollback transaction
4258
+  (0.0ms) begin transaction
4259
+ -------------------------------------
4260
+ RockMotive::ContextTest: test_.actors
4261
+ -------------------------------------
4262
+  (0.1ms) rollback transaction
4263
+  (0.1ms) begin transaction
4264
+ ------------------------------------------------------------
4265
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4266
+ ------------------------------------------------------------
4267
+  (0.1ms) rollback transaction
4268
+  (0.0ms) begin transaction
4269
+ ----------------------------------------------------
4270
+ RockMotive::ContextTest: test_.execute_with_override
4271
+ ----------------------------------------------------
4272
+  (0.0ms) rollback transaction
4273
+  (0.0ms) begin transaction
4274
+ ----------------------------------------------
4275
+ RockMotive::AttributeTest: test_.attr_accessor
4276
+ ----------------------------------------------
4277
+  (0.1ms) rollback transaction
4278
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4279
+  (0.1ms) begin transaction
4280
+ --------------------------
4281
+ RockMotiveTest: test_truth
4282
+ --------------------------
4283
+  (0.0ms) rollback transaction
4284
+  (0.1ms) begin transaction
4285
+ ----------------------------------------------
4286
+ RockMotive::AttributeTest: test_.attr_accessor
4287
+ ----------------------------------------------
4288
+  (0.1ms) rollback transaction
4289
+  (0.0ms) begin transaction
4290
+ -------------------------------------
4291
+ RockMotive::ResolverTest: test_.roles
4292
+ -------------------------------------
4293
+  (0.1ms) rollback transaction
4294
+  (0.1ms) begin transaction
4295
+ --------------------------------------------------
4296
+ RockMotive::ContextTest: test_#execute_with_extend
4297
+ --------------------------------------------------
4298
+  (0.1ms) rollback transaction
4299
+  (0.0ms) begin transaction
4300
+ -------------------------------------------------
4301
+ RockMotive::ContextTest: test_#execute_with_scope
4302
+ -------------------------------------------------
4303
+  (0.0ms) rollback transaction
4304
+  (0.0ms) begin transaction
4305
+ ------------------------------------------------------------
4306
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4307
+ ------------------------------------------------------------
4308
+  (0.1ms) rollback transaction
4309
+  (0.1ms) begin transaction
4310
+ ----------------------------------------------------
4311
+ RockMotive::ContextTest: test_.execute_with_override
4312
+ ----------------------------------------------------
4313
+  (0.1ms) rollback transaction
4314
+  (0.1ms) begin transaction
4315
+ -------------------------------------
4316
+ RockMotive::ContextTest: test_.actors
4317
+ -------------------------------------
4318
+  (0.1ms) rollback transaction
4319
+  (0.0ms) begin transaction
4320
+ ------------------------------------------------------
4321
+ RockMotive::ContextTest: test_#execute_with_unextended
4322
+ ------------------------------------------------------
4323
+  (0.1ms) rollback transaction
4324
+  (0.0ms) begin transaction
4325
+ --------------------------------------
4326
+ RockMotive::ContextTest: test_.execute
4327
+ --------------------------------------
4328
+  (0.0ms) rollback transaction
4329
+  (0.0ms) begin transaction
4330
+ -------------------------------------
4331
+ RockMotive::ContextTest: test_.scopes
4332
+ -------------------------------------
4333
+  (0.1ms) rollback transaction
4334
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4335
+  (0.1ms) begin transaction
4336
+ ----------------------------------------------
4337
+ RockMotive::AttributeTest: test_.attr_accessor
4338
+ ----------------------------------------------
4339
+  (0.1ms) rollback transaction
4340
+  (0.0ms) begin transaction
4341
+ -------------------------------------
4342
+ RockMotive::ContextTest: test_.scopes
4343
+ -------------------------------------
4344
+  (0.1ms) rollback transaction
4345
+  (0.0ms) begin transaction
4346
+ ------------------------------------------------------------
4347
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4348
+ ------------------------------------------------------------
4349
+  (0.1ms) rollback transaction
4350
+  (0.0ms) begin transaction
4351
+ -------------------------------------------------
4352
+ RockMotive::ContextTest: test_#execute_with_scope
4353
+ -------------------------------------------------
4354
+  (0.0ms) rollback transaction
4355
+  (0.0ms) begin transaction
4356
+ -------------------------------------
4357
+ RockMotive::ContextTest: test_.actors
4358
+ -------------------------------------
4359
+  (0.1ms) rollback transaction
4360
+  (0.0ms) begin transaction
4361
+ ----------------------------------------------------
4362
+ RockMotive::ContextTest: test_.execute_with_override
4363
+ ----------------------------------------------------
4364
+  (0.1ms) rollback transaction
4365
+  (0.0ms) begin transaction
4366
+ --------------------------------------
4367
+ RockMotive::ContextTest: test_.execute
4368
+ --------------------------------------
4369
+  (0.0ms) rollback transaction
4370
+  (0.1ms) begin transaction
4371
+ ------------------------------------------------------
4372
+ RockMotive::ContextTest: test_#execute_with_unextended
4373
+ ------------------------------------------------------
4374
+  (0.1ms) rollback transaction
4375
+  (0.0ms) begin transaction
4376
+ --------------------------------------------------
4377
+ RockMotive::ContextTest: test_#execute_with_extend
4378
+ --------------------------------------------------
4379
+  (0.1ms) rollback transaction
4380
+  (0.0ms) begin transaction
4381
+ -------------------------------------
4382
+ RockMotive::ResolverTest: test_.roles
4383
+ -------------------------------------
4384
+  (0.1ms) rollback transaction
4385
+  (0.1ms) begin transaction
4386
+ --------------------------
4387
+ RockMotiveTest: test_truth
4388
+ --------------------------
4389
+  (0.0ms) rollback transaction
4390
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4391
+  (0.1ms) begin transaction
4392
+ -------------------------------------
4393
+ RockMotive::ContextTest: test_.scopes
4394
+ -------------------------------------
4395
+  (0.1ms) rollback transaction
4396
+  (0.0ms) begin transaction
4397
+ ------------------------------------------------------
4398
+ RockMotive::ContextTest: test_#execute_with_unextended
4399
+ ------------------------------------------------------
4400
+  (0.1ms) rollback transaction
4401
+  (0.0ms) begin transaction
4402
+ --------------------------------------
4403
+ RockMotive::ContextTest: test_.execute
4404
+ --------------------------------------
4405
+  (0.0ms) rollback transaction
4406
+  (0.1ms) begin transaction
4407
+ ----------------------------------------------------
4408
+ RockMotive::ContextTest: test_.execute_with_override
4409
+ ----------------------------------------------------
4410
+  (0.0ms) rollback transaction
4411
+  (0.0ms) begin transaction
4412
+ ------------------------------------------------------------
4413
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4414
+ ------------------------------------------------------------
4415
+  (0.1ms) rollback transaction
4416
+  (0.0ms) begin transaction
4417
+ -------------------------------------------------
4418
+ RockMotive::ContextTest: test_#execute_with_scope
4419
+ -------------------------------------------------
4420
+  (0.1ms) rollback transaction
4421
+  (0.1ms) begin transaction
4422
+ -------------------------------------
4423
+ RockMotive::ContextTest: test_.actors
4424
+ -------------------------------------
4425
+  (0.1ms) rollback transaction
4426
+  (0.0ms) begin transaction
4427
+ --------------------------------------------------
4428
+ RockMotive::ContextTest: test_#execute_with_extend
4429
+ --------------------------------------------------
4430
+  (0.1ms) rollback transaction
4431
+  (0.0ms) begin transaction
4432
+ --------------------------
4433
+ RockMotiveTest: test_truth
4434
+ --------------------------
4435
+  (0.0ms) rollback transaction
4436
+  (0.0ms) begin transaction
4437
+ ----------------------------------------------
4438
+ RockMotive::AttributeTest: test_.attr_accessor
4439
+ ----------------------------------------------
4440
+  (0.1ms) rollback transaction
4441
+  (0.0ms) begin transaction
4442
+ -------------------------------------
4443
+ RockMotive::ResolverTest: test_.roles
4444
+ -------------------------------------
4445
+  (0.1ms) rollback transaction
4446
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4447
+  (0.1ms) begin transaction
4448
+ --------------------------
4449
+ RockMotiveTest: test_truth
4450
+ --------------------------
4451
+  (0.0ms) rollback transaction
4452
+  (0.0ms) begin transaction
4453
+ -------------------------------------
4454
+ RockMotive::ResolverTest: test_.roles
4455
+ -------------------------------------
4456
+  (0.1ms) rollback transaction
4457
+  (0.0ms) begin transaction
4458
+ --------------------------------------------------
4459
+ RockMotive::ContextTest: test_#execute_with_extend
4460
+ --------------------------------------------------
4461
+  (0.1ms) rollback transaction
4462
+  (0.1ms) begin transaction
4463
+ -------------------------------------
4464
+ RockMotive::ContextTest: test_.actors
4465
+ -------------------------------------
4466
+  (0.1ms) rollback transaction
4467
+  (0.0ms) begin transaction
4468
+ -------------------------------------------------
4469
+ RockMotive::ContextTest: test_#execute_with_scope
4470
+ -------------------------------------------------
4471
+  (0.1ms) rollback transaction
4472
+  (0.0ms) begin transaction
4473
+ ----------------------------------------------------
4474
+ RockMotive::ContextTest: test_.execute_with_override
4475
+ ----------------------------------------------------
4476
+  (0.0ms) rollback transaction
4477
+  (0.0ms) begin transaction
4478
+ --------------------------------------
4479
+ RockMotive::ContextTest: test_.execute
4480
+ --------------------------------------
4481
+  (0.1ms) rollback transaction
4482
+  (0.0ms) begin transaction
4483
+ -------------------------------------
4484
+ RockMotive::ContextTest: test_.scopes
4485
+ -------------------------------------
4486
+  (0.1ms) rollback transaction
4487
+  (0.1ms) begin transaction
4488
+ ------------------------------------------------------
4489
+ RockMotive::ContextTest: test_#execute_with_unextended
4490
+ ------------------------------------------------------
4491
+  (0.0ms) rollback transaction
4492
+  (0.0ms) begin transaction
4493
+ ------------------------------------------------------------
4494
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4495
+ ------------------------------------------------------------
4496
+  (0.1ms) rollback transaction
4497
+  (0.1ms) begin transaction
4498
+ ----------------------------------------------
4499
+ RockMotive::AttributeTest: test_.attr_accessor
4500
+ ----------------------------------------------
4501
+  (0.1ms) rollback transaction
4502
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4503
+  (0.1ms) begin transaction
4504
+ --------------------------
4505
+ RockMotiveTest: test_truth
4506
+ --------------------------
4507
+  (0.0ms) rollback transaction
4508
+  (0.0ms) begin transaction
4509
+ -------------------------------------
4510
+ RockMotive::ResolverTest: test_.roles
4511
+ -------------------------------------
4512
+  (0.2ms) rollback transaction
4513
+  (0.0ms) begin transaction
4514
+ ----------------------------------------------
4515
+ RockMotive::AttributeTest: test_.attr_accessor
4516
+ ----------------------------------------------
4517
+  (0.5ms) rollback transaction
4518
+  (0.0ms) begin transaction
4519
+ -------------------------------------
4520
+ RockMotive::ContextTest: test_.scopes
4521
+ -------------------------------------
4522
+  (1.3ms) rollback transaction
4523
+  (0.1ms) begin transaction
4524
+ ------------------------------------------------------------
4525
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4526
+ ------------------------------------------------------------
4527
+  (0.1ms) rollback transaction
4528
+  (0.1ms) begin transaction
4529
+ -------------------------------------
4530
+ RockMotive::ContextTest: test_.actors
4531
+ -------------------------------------
4532
+  (0.1ms) rollback transaction
4533
+  (0.0ms) begin transaction
4534
+ ----------------------------------------------------
4535
+ RockMotive::ContextTest: test_.execute_with_override
4536
+ ----------------------------------------------------
4537
+  (0.1ms) rollback transaction
4538
+  (0.0ms) begin transaction
4539
+ --------------------------------------------------
4540
+ RockMotive::ContextTest: test_#execute_with_extend
4541
+ --------------------------------------------------
4542
+  (0.1ms) rollback transaction
4543
+  (0.1ms) begin transaction
4544
+ -------------------------------------------------
4545
+ RockMotive::ContextTest: test_#execute_with_scope
4546
+ -------------------------------------------------
4547
+  (0.0ms) rollback transaction
4548
+  (0.0ms) begin transaction
4549
+ --------------------------------------
4550
+ RockMotive::ContextTest: test_.execute
4551
+ --------------------------------------
4552
+  (0.0ms) rollback transaction
4553
+  (0.0ms) begin transaction
4554
+ ------------------------------------------------------
4555
+ RockMotive::ContextTest: test_#execute_with_unextended
4556
+ ------------------------------------------------------
4557
+  (0.1ms) rollback transaction
4558
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4559
+  (0.1ms) begin transaction
4560
+ -------------------------------------
4561
+ RockMotive::ResolverTest: test_.roles
4562
+ -------------------------------------
4563
+  (0.1ms) rollback transaction
4564
+  (0.0ms) begin transaction
4565
+ -------------------------------------
4566
+ RockMotive::ContextTest: test_.actors
4567
+ -------------------------------------
4568
+  (0.1ms) rollback transaction
4569
+  (0.0ms) begin transaction
4570
+ ------------------------------------------------------------
4571
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4572
+ ------------------------------------------------------------
4573
+  (0.1ms) rollback transaction
4574
+  (0.1ms) begin transaction
4575
+ --------------------------------------
4576
+ RockMotive::ContextTest: test_.execute
4577
+ --------------------------------------
4578
+  (0.1ms) rollback transaction
4579
+  (0.0ms) begin transaction
4580
+ --------------------------------------------------
4581
+ RockMotive::ContextTest: test_#execute_with_extend
4582
+ --------------------------------------------------
4583
+  (0.1ms) rollback transaction
4584
+  (0.1ms) begin transaction
4585
+ -------------------------------------
4586
+ RockMotive::ContextTest: test_.scopes
4587
+ -------------------------------------
4588
+  (0.0ms) rollback transaction
4589
+  (0.1ms) begin transaction
4590
+ -------------------------------------------------
4591
+ RockMotive::ContextTest: test_#execute_with_scope
4592
+ -------------------------------------------------
4593
+  (0.0ms) rollback transaction
4594
+  (0.0ms) begin transaction
4595
+ ----------------------------------------------------
4596
+ RockMotive::ContextTest: test_.execute_with_override
4597
+ ----------------------------------------------------
4598
+  (0.0ms) rollback transaction
4599
+  (0.0ms) begin transaction
4600
+ ------------------------------------------------------
4601
+ RockMotive::ContextTest: test_#execute_with_unextended
4602
+ ------------------------------------------------------
4603
+  (0.1ms) rollback transaction
4604
+  (0.0ms) begin transaction
4605
+ --------------------------
4606
+ RockMotiveTest: test_truth
4607
+ --------------------------
4608
+  (0.0ms) rollback transaction
4609
+  (0.0ms) begin transaction
4610
+ ----------------------------------------------
4611
+ RockMotive::AttributeTest: test_.attr_accessor
4612
+ ----------------------------------------------
4613
+  (0.0ms) rollback transaction
4614
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4615
+  (0.1ms) begin transaction
4616
+ ------------------------------------------------
4617
+ RockMotive::AttributeTest: test_.attr_with_roles
4618
+ ------------------------------------------------
4619
+  (0.1ms) rollback transaction
4620
+  (0.0ms) begin transaction
4621
+ --------------------------
4622
+ RockMotiveTest: test_truth
4623
+ --------------------------
4624
+  (0.0ms) rollback transaction
4625
+  (0.0ms) begin transaction
4626
+ -------------------------------------------------
4627
+ RockMotive::ContextTest: test_#execute_with_scope
4628
+ -------------------------------------------------
4629
+  (0.0ms) rollback transaction
4630
+  (0.0ms) begin transaction
4631
+ ----------------------------------------------------
4632
+ RockMotive::ContextTest: test_.execute_with_override
4633
+ ----------------------------------------------------
4634
+  (0.1ms) rollback transaction
4635
+  (0.1ms) begin transaction
4636
+ -------------------------------------
4637
+ RockMotive::ContextTest: test_.actors
4638
+ -------------------------------------
4639
+  (0.1ms) rollback transaction
4640
+  (0.0ms) begin transaction
4641
+ ------------------------------------------------------
4642
+ RockMotive::ContextTest: test_#execute_with_unextended
4643
+ ------------------------------------------------------
4644
+  (0.1ms) rollback transaction
4645
+  (0.0ms) begin transaction
4646
+ --------------------------------------------------
4647
+ RockMotive::ContextTest: test_#execute_with_extend
4648
+ --------------------------------------------------
4649
+  (0.1ms) rollback transaction
4650
+  (0.0ms) begin transaction
4651
+ --------------------------------------
4652
+ RockMotive::ContextTest: test_.execute
4653
+ --------------------------------------
4654
+  (0.1ms) rollback transaction
4655
+  (0.0ms) begin transaction
4656
+ ------------------------------------------------------------
4657
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4658
+ ------------------------------------------------------------
4659
+  (0.1ms) rollback transaction
4660
+  (0.1ms) begin transaction
4661
+ -------------------------------------
4662
+ RockMotive::ContextTest: test_.scopes
4663
+ -------------------------------------
4664
+  (0.0ms) rollback transaction
4665
+  (0.0ms) begin transaction
4666
+ -------------------------------------
4667
+ RockMotive::ResolverTest: test_.roles
4668
+ -------------------------------------
4669
+  (0.1ms) rollback transaction
4670
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4671
+  (0.1ms) begin transaction
4672
+ ------------------------------------------------
4673
+ RockMotive::AttributeTest: test_.attr_with_roles
4674
+ ------------------------------------------------
4675
+  (0.1ms) rollback transaction
4676
+  (0.0ms) begin transaction
4677
+ -------------------------------------
4678
+ RockMotive::ContextTest: test_.actors
4679
+ -------------------------------------
4680
+  (0.1ms) rollback transaction
4681
+  (0.0ms) begin transaction
4682
+ --------------------------------------
4683
+ RockMotive::ContextTest: test_.execute
4684
+ --------------------------------------
4685
+  (0.0ms) rollback transaction
4686
+  (0.0ms) begin transaction
4687
+ -------------------------------------------------
4688
+ RockMotive::ContextTest: test_#execute_with_scope
4689
+ -------------------------------------------------
4690
+  (0.1ms) rollback transaction
4691
+  (0.0ms) begin transaction
4692
+ ------------------------------------------------------
4693
+ RockMotive::ContextTest: test_#execute_with_unextended
4694
+ ------------------------------------------------------
4695
+  (0.1ms) rollback transaction
4696
+  (0.2ms) begin transaction
4697
+ ------------------------------------------------------------
4698
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4699
+ ------------------------------------------------------------
4700
+  (0.1ms) rollback transaction
4701
+  (0.0ms) begin transaction
4702
+ --------------------------------------------------
4703
+ RockMotive::ContextTest: test_#execute_with_extend
4704
+ --------------------------------------------------
4705
+  (0.1ms) rollback transaction
4706
+  (0.1ms) begin transaction
4707
+ ----------------------------------------------------
4708
+ RockMotive::ContextTest: test_.execute_with_override
4709
+ ----------------------------------------------------
4710
+  (0.1ms) rollback transaction
4711
+  (0.0ms) begin transaction
4712
+ -------------------------------------
4713
+ RockMotive::ContextTest: test_.scopes
4714
+ -------------------------------------
4715
+  (0.1ms) rollback transaction
4716
+  (0.1ms) begin transaction
4717
+ --------------------------
4718
+ RockMotiveTest: test_truth
4719
+ --------------------------
4720
+  (0.0ms) rollback transaction
4721
+  (0.0ms) begin transaction
4722
+ -------------------------------------
4723
+ RockMotive::ResolverTest: test_.roles
4724
+ -------------------------------------
4725
+  (0.1ms) rollback transaction
4726
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4727
+  (0.1ms) begin transaction
4728
+ -------------------------------------
4729
+ RockMotive::ResolverTest: test_.roles
4730
+ -------------------------------------
4731
+  (0.1ms) rollback transaction
4732
+  (0.1ms) begin transaction
4733
+ --------------------------
4734
+ RockMotiveTest: test_truth
4735
+ --------------------------
4736
+  (0.0ms) rollback transaction
4737
+  (0.0ms) begin transaction
4738
+ -------------------------------------
4739
+ RockMotive::ContextTest: test_.scopes
4740
+ -------------------------------------
4741
+  (0.1ms) rollback transaction
4742
+  (0.0ms) begin transaction
4743
+ -------------------------------------
4744
+ RockMotive::ContextTest: test_.actors
4745
+ -------------------------------------
4746
+  (0.1ms) rollback transaction
4747
+  (0.0ms) begin transaction
4748
+ -------------------------------------------------
4749
+ RockMotive::ContextTest: test_#execute_with_scope
4750
+ -------------------------------------------------
4751
+  (0.1ms) rollback transaction
4752
+  (0.1ms) begin transaction
4753
+ --------------------------------------------------
4754
+ RockMotive::ContextTest: test_#execute_with_extend
4755
+ --------------------------------------------------
4756
+  (0.1ms) rollback transaction
4757
+  (0.0ms) begin transaction
4758
+ --------------------------------------
4759
+ RockMotive::ContextTest: test_.execute
4760
+ --------------------------------------
4761
+  (0.0ms) rollback transaction
4762
+  (0.0ms) begin transaction
4763
+ ----------------------------------------------------
4764
+ RockMotive::ContextTest: test_.execute_with_override
4765
+ ----------------------------------------------------
4766
+  (0.1ms) rollback transaction
4767
+  (0.0ms) begin transaction
4768
+ ------------------------------------------------------------
4769
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4770
+ ------------------------------------------------------------
4771
+  (0.1ms) rollback transaction
4772
+  (0.0ms) begin transaction
4773
+ ------------------------------------------------------
4774
+ RockMotive::ContextTest: test_#execute_with_unextended
4775
+ ------------------------------------------------------
4776
+  (0.1ms) rollback transaction
4777
+  (0.0ms) begin transaction
4778
+ ------------------------------------------------
4779
+ RockMotive::AttributeTest: test_.attr_with_roles
4780
+ ------------------------------------------------
4781
+  (0.0ms) rollback transaction
4782
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4783
+  (0.1ms) begin transaction
4784
+ -------------------------------------
4785
+ RockMotive::ResolverTest: test_.roles
4786
+ -------------------------------------
4787
+  (0.1ms) rollback transaction
4788
+  (0.0ms) begin transaction
4789
+ --------------------------
4790
+ RockMotiveTest: test_truth
4791
+ --------------------------
4792
+  (0.0ms) rollback transaction
4793
+  (0.0ms) begin transaction
4794
+ ------------------------------------------------
4795
+ RockMotive::AttributeTest: test_.attr_with_roles
4796
+ ------------------------------------------------
4797
+  (0.1ms) rollback transaction
4798
+  (0.0ms) begin transaction
4799
+ -------------------------------------------------
4800
+ RockMotive::ContextTest: test_#execute_with_scope
4801
+ -------------------------------------------------
4802
+  (0.1ms) rollback transaction
4803
+  (0.0ms) begin transaction
4804
+ --------------------------------------------------
4805
+ RockMotive::ContextTest: test_#execute_with_extend
4806
+ --------------------------------------------------
4807
+  (0.1ms) rollback transaction
4808
+  (0.0ms) begin transaction
4809
+ --------------------------------------
4810
+ RockMotive::ContextTest: test_.execute
4811
+ --------------------------------------
4812
+  (0.0ms) rollback transaction
4813
+  (0.0ms) begin transaction
4814
+ ------------------------------------------------------
4815
+ RockMotive::ContextTest: test_#execute_with_unextended
4816
+ ------------------------------------------------------
4817
+  (0.0ms) rollback transaction
4818
+  (0.0ms) begin transaction
4819
+ ----------------------------------------------------
4820
+ RockMotive::ContextTest: test_.execute_with_override
4821
+ ----------------------------------------------------
4822
+  (0.0ms) rollback transaction
4823
+  (0.0ms) begin transaction
4824
+ -------------------------------------
4825
+ RockMotive::ContextTest: test_.actors
4826
+ -------------------------------------
4827
+  (0.1ms) rollback transaction
4828
+  (0.0ms) begin transaction
4829
+ ------------------------------------------------------------
4830
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4831
+ ------------------------------------------------------------
4832
+  (0.1ms) rollback transaction
4833
+  (0.0ms) begin transaction
4834
+ -------------------------------------
4835
+ RockMotive::ContextTest: test_.scopes
4836
+ -------------------------------------
4837
+  (0.0ms) rollback transaction
4838
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4839
+  (0.1ms) begin transaction
4840
+ --------------------------
4841
+ RockMotiveTest: test_truth
4842
+ --------------------------
4843
+  (0.0ms) rollback transaction
4844
+  (0.0ms) begin transaction
4845
+ -------------------------------------
4846
+ RockMotive::ContextTest: test_.scopes
4847
+ -------------------------------------
4848
+  (0.0ms) rollback transaction
4849
+  (0.0ms) begin transaction
4850
+ ------------------------------------------------------
4851
+ RockMotive::ContextTest: test_#execute_with_unextended
4852
+ ------------------------------------------------------
4853
+  (0.1ms) rollback transaction
4854
+  (0.0ms) begin transaction
4855
+ -------------------------------------
4856
+ RockMotive::ContextTest: test_.actors
4857
+ -------------------------------------
4858
+  (0.1ms) rollback transaction
4859
+  (0.0ms) begin transaction
4860
+ ----------------------------------------------------
4861
+ RockMotive::ContextTest: test_.execute_with_override
4862
+ ----------------------------------------------------
4863
+  (0.1ms) rollback transaction
4864
+  (0.0ms) begin transaction
4865
+ -------------------------------------------------
4866
+ RockMotive::ContextTest: test_#execute_with_scope
4867
+ -------------------------------------------------
4868
+  (0.1ms) rollback transaction
4869
+  (0.0ms) begin transaction
4870
+ --------------------------------------
4871
+ RockMotive::ContextTest: test_.execute
4872
+ --------------------------------------
4873
+  (0.1ms) rollback transaction
4874
+  (0.0ms) begin transaction
4875
+ --------------------------------------------------
4876
+ RockMotive::ContextTest: test_#execute_with_extend
4877
+ --------------------------------------------------
4878
+  (0.1ms) rollback transaction
4879
+  (0.0ms) begin transaction
4880
+ ------------------------------------------------------------
4881
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4882
+ ------------------------------------------------------------
4883
+  (0.1ms) rollback transaction
4884
+  (0.1ms) begin transaction
4885
+ -------------------------------------
4886
+ RockMotive::ResolverTest: test_.roles
4887
+ -------------------------------------
4888
+  (0.1ms) rollback transaction
4889
+  (0.0ms) begin transaction
4890
+ ------------------------------------------------
4891
+ RockMotive::AttributeTest: test_.attr_with_roles
4892
+ ------------------------------------------------
4893
+  (0.0ms) rollback transaction
4894
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4895
+  (0.1ms) begin transaction
4896
+ --------------------------
4897
+ RockMotiveTest: test_truth
4898
+ --------------------------
4899
+  (0.0ms) rollback transaction
4900
+  (0.0ms) begin transaction
4901
+ -------------------------------------
4902
+ RockMotive::ResolverTest: test_.roles
4903
+ -------------------------------------
4904
+  (0.1ms) rollback transaction
4905
+  (0.1ms) begin transaction
4906
+ -------------------------------------
4907
+ RockMotive::ContextTest: test_.actors
4908
+ -------------------------------------
4909
+  (0.1ms) rollback transaction
4910
+  (0.0ms) begin transaction
4911
+ -------------------------------------
4912
+ RockMotive::ContextTest: test_.scopes
4913
+ -------------------------------------
4914
+  (0.0ms) rollback transaction
4915
+  (0.0ms) begin transaction
4916
+ ----------------------------------------------------
4917
+ RockMotive::ContextTest: test_.execute_with_override
4918
+ ----------------------------------------------------
4919
+  (0.0ms) rollback transaction
4920
+  (0.0ms) begin transaction
4921
+ --------------------------------------
4922
+ RockMotive::ContextTest: test_.execute
4923
+ --------------------------------------
4924
+  (0.0ms) rollback transaction
4925
+  (0.1ms) begin transaction
4926
+ -------------------------------------------------
4927
+ RockMotive::ContextTest: test_#execute_with_scope
4928
+ -------------------------------------------------
4929
+  (0.1ms) rollback transaction
4930
+  (0.0ms) begin transaction
4931
+ --------------------------------------------------
4932
+ RockMotive::ContextTest: test_#execute_with_extend
4933
+ --------------------------------------------------
4934
+  (0.1ms) rollback transaction
4935
+  (0.0ms) begin transaction
4936
+ ------------------------------------------------------------
4937
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4938
+ ------------------------------------------------------------
4939
+  (0.1ms) rollback transaction
4940
+  (0.0ms) begin transaction
4941
+ ------------------------------------------------------
4942
+ RockMotive::ContextTest: test_#execute_with_unextended
4943
+ ------------------------------------------------------
4944
+  (0.0ms) rollback transaction
4945
+  (0.0ms) begin transaction
4946
+ ------------------------------------------------
4947
+ RockMotive::AttributeTest: test_.attr_with_roles
4948
+ ------------------------------------------------
4949
+  (0.1ms) rollback transaction
4950
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4951
+  (0.1ms) begin transaction
4952
+ ----------------------------------------------------
4953
+ RockMotive::ContextTest: test_.execute_with_override
4954
+ ----------------------------------------------------
4955
+  (0.1ms) rollback transaction
4956
+  (0.0ms) begin transaction
4957
+ -------------------------------------------------
4958
+ RockMotive::ContextTest: test_#execute_with_scope
4959
+ -------------------------------------------------
4960
+  (0.1ms) rollback transaction
4961
+  (0.0ms) begin transaction
4962
+ ------------------------------------------------------
4963
+ RockMotive::ContextTest: test_#execute_with_unextended
4964
+ ------------------------------------------------------
4965
+  (0.1ms) rollback transaction
4966
+  (0.0ms) begin transaction
4967
+ --------------------------------------------------
4968
+ RockMotive::ContextTest: test_#execute_with_extend
4969
+ --------------------------------------------------
4970
+  (0.1ms) rollback transaction
4971
+  (0.0ms) begin transaction
4972
+ --------------------------------------
4973
+ RockMotive::ContextTest: test_.execute
4974
+ --------------------------------------
4975
+  (0.0ms) rollback transaction
4976
+  (0.0ms) begin transaction
4977
+ ------------------------------------------------------------
4978
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
4979
+ ------------------------------------------------------------
4980
+  (0.1ms) rollback transaction
4981
+  (0.0ms) begin transaction
4982
+ -------------------------------------
4983
+ RockMotive::ContextTest: test_.scopes
4984
+ -------------------------------------
4985
+  (0.0ms) rollback transaction
4986
+  (0.0ms) begin transaction
4987
+ -------------------------------------
4988
+ RockMotive::ContextTest: test_.actors
4989
+ -------------------------------------
4990
+  (0.1ms) rollback transaction
4991
+  (0.0ms) begin transaction
4992
+ --------------------------------------------------------------
4993
+ RockMotive::AttributeTest: test_.attr_with_roles_with_override
4994
+ --------------------------------------------------------------
4995
+  (0.1ms) rollback transaction
4996
+  (0.0ms) begin transaction
4997
+ ------------------------------------------------
4998
+ RockMotive::AttributeTest: test_.attr_with_roles
4999
+ ------------------------------------------------
5000
+  (0.0ms) rollback transaction
5001
+  (0.0ms) begin transaction
5002
+ --------------------------
5003
+ RockMotiveTest: test_truth
5004
+ --------------------------
5005
+  (0.0ms) rollback transaction
5006
+  (0.0ms) begin transaction
5007
+ -------------------------------------
5008
+ RockMotive::ResolverTest: test_.roles
5009
+ -------------------------------------
5010
+  (0.1ms) rollback transaction
5011
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5012
+  (0.1ms) begin transaction
5013
+ -------------------------------------
5014
+ RockMotive::ResolverTest: test_.roles
5015
+ -------------------------------------
5016
+  (0.1ms) rollback transaction
5017
+  (0.0ms) begin transaction
5018
+ --------------------------------------------------------------
5019
+ RockMotive::AttributeTest: test_.attr_with_roles_with_override
5020
+ --------------------------------------------------------------
5021
+  (0.1ms) rollback transaction
5022
+  (0.0ms) begin transaction
5023
+ ------------------------------------------------
5024
+ RockMotive::AttributeTest: test_.attr_with_roles
5025
+ ------------------------------------------------
5026
+  (0.1ms) rollback transaction
5027
+  (0.0ms) begin transaction
5028
+ --------------------------
5029
+ RockMotiveTest: test_truth
5030
+ --------------------------
5031
+  (0.1ms) rollback transaction
5032
+  (0.0ms) begin transaction
5033
+ --------------------------------------------------
5034
+ RockMotive::ContextTest: test_#execute_with_extend
5035
+ --------------------------------------------------
5036
+  (0.1ms) rollback transaction
5037
+  (0.1ms) begin transaction
5038
+ ------------------------------------------------------
5039
+ RockMotive::ContextTest: test_#execute_with_unextended
5040
+ ------------------------------------------------------
5041
+  (0.1ms) rollback transaction
5042
+  (0.0ms) begin transaction
5043
+ --------------------------------------
5044
+ RockMotive::ContextTest: test_.execute
5045
+ --------------------------------------
5046
+  (0.0ms) rollback transaction
5047
+  (0.0ms) begin transaction
5048
+ -------------------------------------
5049
+ RockMotive::ContextTest: test_.scopes
5050
+ -------------------------------------
5051
+  (0.0ms) rollback transaction
5052
+  (0.0ms) begin transaction
5053
+ -------------------------------------
5054
+ RockMotive::ContextTest: test_.actors
5055
+ -------------------------------------
5056
+  (0.1ms) rollback transaction
5057
+  (0.1ms) begin transaction
5058
+ ------------------------------------------------------------
5059
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
5060
+ ------------------------------------------------------------
5061
+  (0.1ms) rollback transaction
5062
+  (0.1ms) begin transaction
5063
+ ----------------------------------------------------
5064
+ RockMotive::ContextTest: test_.execute_with_override
5065
+ ----------------------------------------------------
5066
+  (0.1ms) rollback transaction
5067
+  (0.0ms) begin transaction
5068
+ -------------------------------------------------
5069
+ RockMotive::ContextTest: test_#execute_with_scope
5070
+ -------------------------------------------------
5071
+  (0.1ms) rollback transaction
5072
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5073
+  (0.1ms) begin transaction
5074
+ --------------------------
5075
+ RockMotiveTest: test_truth
5076
+ --------------------------
5077
+  (0.1ms) rollback transaction
5078
+  (0.0ms) begin transaction
5079
+ --------------------------------------------------------------
5080
+ RockMotive::AttributeTest: test_.attr_with_roles_with_override
5081
+ --------------------------------------------------------------
5082
+  (0.1ms) rollback transaction
5083
+  (0.1ms) begin transaction
5084
+ ------------------------------------------------
5085
+ RockMotive::AttributeTest: test_.attr_with_roles
5086
+ ------------------------------------------------
5087
+  (0.1ms) rollback transaction
5088
+  (0.0ms) begin transaction
5089
+ ------------------------------------------------------
5090
+ RockMotive::ContextTest: test_#execute_with_unextended
5091
+ ------------------------------------------------------
5092
+  (0.1ms) rollback transaction
5093
+  (0.1ms) begin transaction
5094
+ ------------------------------------------------------------
5095
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
5096
+ ------------------------------------------------------------
5097
+  (0.1ms) rollback transaction
5098
+  (0.1ms) begin transaction
5099
+ -------------------------------------
5100
+ RockMotive::ContextTest: test_.scopes
5101
+ -------------------------------------
5102
+  (0.1ms) rollback transaction
5103
+  (0.0ms) begin transaction
5104
+ ----------------------------------------------------
5105
+ RockMotive::ContextTest: test_.execute_with_override
5106
+ ----------------------------------------------------
5107
+  (0.1ms) rollback transaction
5108
+  (0.0ms) begin transaction
5109
+ --------------------------------------
5110
+ RockMotive::ContextTest: test_.execute
5111
+ --------------------------------------
5112
+  (0.1ms) rollback transaction
5113
+  (0.0ms) begin transaction
5114
+ -------------------------------------
5115
+ RockMotive::ContextTest: test_.actors
5116
+ -------------------------------------
5117
+  (0.1ms) rollback transaction
5118
+  (0.1ms) begin transaction
5119
+ -------------------------------------------------
5120
+ RockMotive::ContextTest: test_#execute_with_scope
5121
+ -------------------------------------------------
5122
+  (0.1ms) rollback transaction
5123
+  (0.1ms) begin transaction
5124
+ --------------------------------------------------
5125
+ RockMotive::ContextTest: test_#execute_with_extend
5126
+ --------------------------------------------------
5127
+  (0.1ms) rollback transaction
5128
+  (0.1ms) begin transaction
5129
+ -------------------------------------
5130
+ RockMotive::ResolverTest: test_.roles
5131
+ -------------------------------------
5132
+  (0.1ms) rollback transaction
5133
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5134
+  (0.1ms) begin transaction
5135
+ ------------------------------------------------
5136
+ RockMotive::AttributeTest: test_.attr_with_roles
5137
+ ------------------------------------------------
5138
+  (0.1ms) rollback transaction
5139
+  (0.0ms) begin transaction
5140
+ --------------------------------------------------------------
5141
+ RockMotive::AttributeTest: test_.attr_with_roles_with_override
5142
+ --------------------------------------------------------------
5143
+  (0.1ms) rollback transaction
5144
+  (0.0ms) begin transaction
5145
+ -------------------------------------
5146
+ RockMotive::ResolverTest: test_.roles
5147
+ -------------------------------------
5148
+  (0.1ms) rollback transaction
5149
+  (0.0ms) begin transaction
5150
+ --------------------------
5151
+ RockMotiveTest: test_truth
5152
+ --------------------------
5153
+  (0.0ms) rollback transaction
5154
+  (0.0ms) begin transaction
5155
+ -------------------------------------------------
5156
+ RockMotive::ContextTest: test_#execute_with_scope
5157
+ -------------------------------------------------
5158
+  (0.1ms) rollback transaction
5159
+  (0.0ms) begin transaction
5160
+ --------------------------------------
5161
+ RockMotive::ContextTest: test_.execute
5162
+ --------------------------------------
5163
+  (0.1ms) rollback transaction
5164
+  (0.1ms) begin transaction
5165
+ --------------------------------------------------
5166
+ RockMotive::ContextTest: test_#execute_with_extend
5167
+ --------------------------------------------------
5168
+  (0.1ms) rollback transaction
5169
+  (0.0ms) begin transaction
5170
+ -------------------------------------
5171
+ RockMotive::ContextTest: test_.actors
5172
+ -------------------------------------
5173
+  (0.1ms) rollback transaction
5174
+  (0.0ms) begin transaction
5175
+ ------------------------------------------------------
5176
+ RockMotive::ContextTest: test_#execute_with_unextended
5177
+ ------------------------------------------------------
5178
+  (0.1ms) rollback transaction
5179
+  (0.0ms) begin transaction
5180
+ -------------------------------------
5181
+ RockMotive::ContextTest: test_.scopes
5182
+ -------------------------------------
5183
+  (0.1ms) rollback transaction
5184
+  (0.1ms) begin transaction
5185
+ ----------------------------------------------------
5186
+ RockMotive::ContextTest: test_.execute_with_override
5187
+ ----------------------------------------------------
5188
+  (0.1ms) rollback transaction
5189
+  (0.0ms) begin transaction
5190
+ ------------------------------------------------------------
5191
+ RockMotive::ContextTest: test_#execute_with_keyword_argument
5192
+ ------------------------------------------------------------
5193
+  (0.1ms) rollback transaction