ood_appkit 1.1.5 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67c2f80fbfe3282bee7a74b5cca3b3c058ad88d627580fc8264168ff60f86015
4
- data.tar.gz: ca63bb2093337352a024021b7dce88e89b1f1309a50d283e6ee370cfa42a03e3
3
+ metadata.gz: 5d163ac06cf40cc8dea949f1df6874690f96b2989e9b907e8431f628299d00d9
4
+ data.tar.gz: fcd62555677e38e455a36bc10b908062b65d3f6b127f5717eae535c229b50d29
5
5
  SHA512:
6
- metadata.gz: e37c27a4fc679378e3ac3d11d9e46a8237e154b08308a86b566f0e5e7590573e34bf0d64ec3a2995f974d80e52ce4c68f5796947d99b388a417cd4345f8b1b7f
7
- data.tar.gz: b39f944e216c5bafb091e69dd6a5089522f852919278e7820cf11dcdb52bc34165bad8e56daf1131378a3036044a9cacf5d67ff46057e7837c2b3f977abb0208
6
+ metadata.gz: 754d47c3c91011814f14afcbab77b59a17a78a14a62821a891ffe3ae20e5dc824acd8113fd5ae6b04f036a35975111457d0c2ec0b5ed29c7e6e01e66aba60747
7
+ data.tar.gz: 1ca2ff5da88e8576590cb5c60417d9a3cfb70d76793cd65286db415498fd46951df9c64ae97431c219ec959648c02bcf3cf150f43c677db2422755382cacc87e
@@ -95,11 +95,12 @@ module OodAppkit
95
95
  )
96
96
  self.files = Urls::Files.new(
97
97
  title: ENV['OOD_FILES_TITLE'] || 'Files',
98
- base_url: ENV['OOD_FILES_URL'] || '/pun/sys/files'
98
+ base_url: ENV['OOD_FILES_URL'] || '/pun/sys/dashboard/files'
99
99
  )
100
100
  self.editor = Urls::Editor.new(
101
101
  title: ENV['OOD_EDITOR_TITLE'] || 'Editor',
102
- base_url: ENV['OOD_EDITOR_URL'] || '/pun/sys/file-editor'
102
+ # this is not a typo => the editor is /edit off of the base url
103
+ base_url: ENV['OOD_EDITOR_URL'] || '/pun/sys/dashboard/files'
103
104
  )
104
105
 
105
106
  # Add routes for useful features
@@ -4,8 +4,8 @@ module OodAppkit
4
4
  # String of ruby code to be evaluated when rendering the view
5
5
  # @param template [ActionView::Template] the template to be rendered
6
6
  # @return [String] string of ruby code to be evaluated
7
- def self.call(template)
8
- "begin;#{render(template.source)}.html_safe;end"
7
+ def self.call(_, source)
8
+ "begin;#{render(source)}.html_safe;end"
9
9
  end
10
10
 
11
11
  # Render markdown to HTML
@@ -15,11 +15,11 @@ module OodAppkit
15
15
  markdown.render(text).inspect
16
16
  end
17
17
 
18
- private
19
- # Markdown renderer used
20
- def self.markdown
21
- @markdown ||= OodAppkit.markdown
22
- end
18
+ # Markdown renderer used
19
+ def self.markdown
20
+ @markdown ||= OodAppkit.markdown
21
+ end
22
+ private_class_method :markdown
23
23
  end
24
24
  end
25
25
 
@@ -4,7 +4,7 @@ module OodAppkit
4
4
  class Editor < Url
5
5
  # @param (see Url#initialize)
6
6
  # @param edit_url [#to_s] the URL used to request the file editor api
7
- def initialize(edit_url: '/edit', template: '{/url*}{+path}', **kwargs)
7
+ def initialize(edit_url: '/edit', template: '{/url*}{/fs}{+path}', **kwargs)
8
8
  super(template: template, **kwargs)
9
9
  @edit_url = parse_url_segments(edit_url.to_s)
10
10
  end
@@ -13,13 +13,15 @@ module OodAppkit
13
13
  # @param opts [#to_h] the available options for this method
14
14
  # @option opts [#to_s, nil] :path ("") The absolute path to the file on
15
15
  # the filesystem
16
+ # @option opts [#to_s, nil] :fs ("") The filesystem for the path
16
17
  # @return [Addressable::URI] absolute url to access path in file editor
17
18
  # api
18
19
  def edit(opts = {})
19
20
  opts = opts.to_h.compact.symbolize_keys
20
21
 
21
22
  path = opts.fetch(:path, "").to_s
22
- @template.expand url: @base_url + @edit_url, path: path
23
+ fs = opts.fetch(:fs, "fs").to_s
24
+ @template.expand url: @base_url + @edit_url, fs: fs, path: path
23
25
  end
24
26
  end
25
27
  end
@@ -5,7 +5,7 @@ module OodAppkit
5
5
  # @param (see Url#initialize)
6
6
  # @param fs_url [#to_s] the URL used to request a filesystem view in the app
7
7
  # @param api_url [#to_s] the URL used to request the app's api
8
- def initialize(fs_url: '/fs', api_url: '/api/v1/fs', template: '{/url*}{+path}', **kwargs)
8
+ def initialize(fs_url: '', api_url: '/api/v1', template: '{/url*}{/fs}{+path}', **kwargs)
9
9
  super(template: template, **kwargs)
10
10
  @fs_url = parse_url_segments(fs_url.to_s)
11
11
  @api_url = parse_url_segments(api_url.to_s)
@@ -15,24 +15,28 @@ module OodAppkit
15
15
  # @param opts [#to_h] the available options for this method
16
16
  # @option opts [#to_s, nil] :path ("") The absolute path to the file on
17
17
  # the filesystem
18
+ # @option opts [#to_s, nil] :fs ("") The filesystem for the path
18
19
  # @return [Addressable::URI] absolute url to access path in file app
19
20
  def url(opts = {})
20
21
  opts = opts.to_h.compact.symbolize_keys
21
22
 
22
23
  path = opts.fetch(:path, "").to_s
23
- @template.expand url: @base_url + @fs_url, path: path
24
+ fs = opts.fetch(:fs, "fs").to_s
25
+ @template.expand url: @base_url + @fs_url, fs: fs, path: path
24
26
  end
25
27
 
26
28
  # URL to access this app's API for a given absolute file path
27
29
  # @param opts [#to_h] the available options for this method
28
30
  # @option opts [#to_s, nil] :path ("") The absolute path to the file on
29
31
  # the filesystem
32
+ # @option opts [#to_s, nil] :fs ("") The filesystem for the path
30
33
  # @return [Addressable::URI] absolute url to access path in files app api
31
34
  def api(opts = {})
32
35
  opts = opts.to_h.compact.symbolize_keys
33
36
 
34
37
  path = opts.fetch(:path, "").to_s
35
- @template.expand url: @base_url + @api_url, path: path
38
+ fs = opts.fetch(:fs, "fs").to_s
39
+ @template.expand url: @base_url + @api_url, fs: fs, path: path
36
40
  end
37
41
  end
38
42
  end
@@ -1,4 +1,6 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module OodAppkit
2
4
  # The current version of OodAppkit
3
- VERSION = "1.1.5"
5
+ VERSION = '2.1.1'
4
6
  end
@@ -23,6 +23,23 @@ class OodAppkitTest < ActiveSupport::TestCase
23
23
 
24
24
  assert_equal "/f/fs/nfs/17/efranz/ood_dev", f.url(path: "/nfs/17/efranz/ood_dev").to_s
25
25
  assert_equal "/f/fs/nfs/17/efranz/ood_dev", f.url(path: Pathname.new("/nfs/17/efranz/ood_dev")).to_s
26
+
27
+ assert_equal "/f/s3/mybucket/foo", f.url(path: "/mybucket/foo", fs: "s3").to_s
28
+ assert_equal "/f/s3/mybucket/foo", f.url(path: Pathname.new("/mybucket/foo"), fs: "s3").to_s
29
+
30
+ assert_equal "/f/api/v1/fs/foo/bar", f.api(path: "/foo/bar").to_s
31
+ assert_equal "/f/api/v1/s3/foo/bar", f.api(path: "/foo/bar", fs: "s3").to_s
32
+
33
+ assert_equal "/f/Remote%200.-_/foo/bar", f.url(path: "/foo/bar", fs: "Remote 0.-_").to_s
26
34
  end
27
35
 
36
+ test "editor urls" do
37
+ e = OodAppkit::Urls::Editor.new(base_url: "/f")
38
+
39
+ assert_equal "/f/edit/fs/foo/bar", e.edit(path: "/foo/bar").to_s
40
+ assert_equal "/f/edit/fs/foo/bar", e.edit(path: Pathname.new("/foo/bar")).to_s
41
+ assert_equal "/f/edit/s3/foo/bar", e.edit(path: "/foo/bar", fs: "s3").to_s
42
+
43
+ assert_equal "/f/edit/Remote%200.-_/foo/bar", e.edit(path: "/foo/bar", fs: "Remote 0.-_").to_s
44
+ end
28
45
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ood_appkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Franz
@@ -9,28 +9,28 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-10-25 00:00:00.000000000 Z
12
+ date: 2022-08-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ">"
18
+ - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: 4.0.7
20
+ version: 6.0.0
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '6.0'
23
+ version: '7'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
- - - ">"
28
+ - - ">="
29
29
  - !ruby/object:Gem::Version
30
- version: 4.0.7
30
+ version: 6.0.0
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '6.0'
33
+ version: '7'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: ood_core
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -166,8 +166,6 @@ files:
166
166
  - test/dummy/config/initializers/wrap_parameters.rb
167
167
  - test/dummy/config/locales/en.yml
168
168
  - test/dummy/config/routes.rb
169
- - test/dummy/db/test.sqlite3
170
- - test/dummy/log/test.log
171
169
  - test/dummy/public/404.html
172
170
  - test/dummy/public/422.html
173
171
  - test/dummy/public/500.html
@@ -194,46 +192,43 @@ required_rubygems_version: !ruby/object:Gem::Requirement
194
192
  - !ruby/object:Gem::Version
195
193
  version: '0'
196
194
  requirements: []
197
- rubyforge_project:
198
- rubygems_version: 2.7.6.2
195
+ rubygems_version: 3.1.2
199
196
  signing_key:
200
197
  specification_version: 4
201
198
  summary: Open OnDemand gem to help build OOD apps and interface with other OOD apps.
202
199
  test_files:
203
- - test/dummy/README.rdoc
204
- - test/dummy/Rakefile
205
- - test/dummy/app/assets/javascripts/application.js
206
- - test/dummy/app/assets/stylesheets/application.css
207
- - test/dummy/app/assets/config/manifest.js
208
- - test/dummy/app/controllers/application_controller.rb
209
- - test/dummy/app/helpers/application_helper.rb
210
- - test/dummy/app/views/layouts/application.html.erb
200
+ - test/ood_appkit_test.rb
201
+ - test/test_helper.rb
202
+ - test/dummy/config.ru
203
+ - test/dummy/bin/rake
211
204
  - test/dummy/bin/bundle
212
205
  - test/dummy/bin/rails
213
- - test/dummy/bin/rake
214
- - test/dummy/config.ru
206
+ - test/dummy/public/422.html
207
+ - test/dummy/public/500.html
208
+ - test/dummy/public/favicon.ico
209
+ - test/dummy/public/404.html
210
+ - test/dummy/README.rdoc
211
+ - test/dummy/config/locales/en.yml
212
+ - test/dummy/config/environments/test.rb
213
+ - test/dummy/config/environments/production.rb
214
+ - test/dummy/config/environments/development.rb
215
+ - test/dummy/config/database.yml
215
216
  - test/dummy/config/application.rb
216
217
  - test/dummy/config/boot.rb
217
- - test/dummy/config/database.yml
218
218
  - test/dummy/config/environment.rb
219
- - test/dummy/config/environments/development.rb
220
- - test/dummy/config/environments/production.rb
221
- - test/dummy/config/environments/test.rb
222
- - test/dummy/config/initializers/backtrace_silencers.rb
223
- - test/dummy/config/initializers/filter_parameter_logging.rb
224
219
  - test/dummy/config/initializers/inflections.rb
225
- - test/dummy/config/initializers/mime_types.rb
226
- - test/dummy/config/initializers/secret_token.rb
227
220
  - test/dummy/config/initializers/session_store.rb
221
+ - test/dummy/config/initializers/backtrace_silencers.rb
222
+ - test/dummy/config/initializers/secret_token.rb
228
223
  - test/dummy/config/initializers/wrap_parameters.rb
229
- - test/dummy/config/locales/en.yml
224
+ - test/dummy/config/initializers/mime_types.rb
225
+ - test/dummy/config/initializers/filter_parameter_logging.rb
230
226
  - test/dummy/config/routes.rb
231
- - test/dummy/log/test.log
232
- - test/dummy/public/404.html
233
- - test/dummy/public/422.html
234
- - test/dummy/public/500.html
235
- - test/dummy/public/favicon.ico
236
- - test/dummy/db/test.sqlite3
227
+ - test/dummy/app/helpers/application_helper.rb
228
+ - test/dummy/app/views/layouts/application.html.erb
229
+ - test/dummy/app/controllers/application_controller.rb
230
+ - test/dummy/app/assets/stylesheets/application.css
231
+ - test/dummy/app/assets/config/manifest.js
232
+ - test/dummy/app/assets/javascripts/application.js
233
+ - test/dummy/Rakefile
237
234
  - test/integration/navigation_test.rb
238
- - test/ood_appkit_test.rb
239
- - test/test_helper.rb
File without changes
@@ -1,305 +0,0 @@
1
-  (0.1ms) begin transaction
2
- ------------------------------
3
- OodAppkitTest: test_shell_urls
4
- ------------------------------
5
-  (0.1ms) rollback transaction
6
-  (0.0ms) begin transaction
7
- ------------------------------
8
- OodAppkitTest: test_files_urls
9
- ------------------------------
10
-  (0.1ms) rollback transaction
11
-  (0.1ms) begin transaction
12
- -------------------------
13
- OodAppkitTest: test_truth
14
- -------------------------
15
-  (0.0ms) rollback transaction
16
-  (0.1ms) begin transaction
17
- -------------------------
18
- OodAppkitTest: test_truth
19
- -------------------------
20
-  (0.1ms) rollback transaction
21
-  (0.0ms) begin transaction
22
- ------------------------------
23
- OodAppkitTest: test_files_urls
24
- ------------------------------
25
-  (0.1ms) rollback transaction
26
-  (0.1ms) begin transaction
27
- ------------------------------
28
- OodAppkitTest: test_shell_urls
29
- ------------------------------
30
-  (0.1ms) rollback transaction
31
-  (0.1ms) begin transaction
32
- -------------------------
33
- OodAppkitTest: test_truth
34
- -------------------------
35
-  (0.1ms) rollback transaction
36
-  (0.0ms) begin transaction
37
- ------------------------------
38
- OodAppkitTest: test_shell_urls
39
- ------------------------------
40
-  (0.1ms) rollback transaction
41
-  (0.1ms) begin transaction
42
- ------------------------------
43
- OodAppkitTest: test_files_urls
44
- ------------------------------
45
-  (0.0ms) rollback transaction
46
-  (0.1ms) begin transaction
47
- -------------------------
48
- OodAppkitTest: test_truth
49
- -------------------------
50
-  (0.1ms) rollback transaction
51
-  (0.0ms) begin transaction
52
- ------------------------------
53
- OodAppkitTest: test_files_urls
54
- ------------------------------
55
-  (0.1ms) rollback transaction
56
-  (0.0ms) begin transaction
57
- ------------------------------
58
- OodAppkitTest: test_shell_urls
59
- ------------------------------
60
-  (0.1ms) rollback transaction
61
-  (0.1ms) begin transaction
62
- ------------------------------
63
- OodAppkitTest: test_shell_urls
64
- ------------------------------
65
-  (0.1ms) rollback transaction
66
-  (0.0ms) begin transaction
67
- -------------------------
68
- OodAppkitTest: test_truth
69
- -------------------------
70
-  (0.0ms) rollback transaction
71
-  (0.0ms) begin transaction
72
- ------------------------------
73
- OodAppkitTest: test_files_urls
74
- ------------------------------
75
-  (0.1ms) rollback transaction
76
-  (0.1ms) begin transaction
77
- ------------------------------
78
- OodAppkitTest: test_files_urls
79
- ------------------------------
80
-  (0.1ms) rollback transaction
81
-  (0.1ms) begin transaction
82
- -------------------------
83
- OodAppkitTest: test_truth
84
- -------------------------
85
-  (0.0ms) rollback transaction
86
-  (0.0ms) begin transaction
87
- ------------------------------
88
- OodAppkitTest: test_shell_urls
89
- ------------------------------
90
-  (0.1ms) rollback transaction
91
-  (0.1ms) begin transaction
92
- -------------------------
93
- OodAppkitTest: test_truth
94
- -------------------------
95
-  (0.1ms) rollback transaction
96
-  (0.0ms) begin transaction
97
- ------------------------------
98
- OodAppkitTest: test_files_urls
99
- ------------------------------
100
-  (0.0ms) rollback transaction
101
-  (0.1ms) begin transaction
102
- ------------------------------
103
- OodAppkitTest: test_shell_urls
104
- ------------------------------
105
-  (0.1ms) rollback transaction
106
-  (0.1ms) begin transaction
107
- ------------------------------
108
- OodAppkitTest: test_files_urls
109
- ------------------------------
110
-  (0.1ms) rollback transaction
111
-  (0.0ms) begin transaction
112
- -------------------------
113
- OodAppkitTest: test_truth
114
- -------------------------
115
-  (0.1ms) rollback transaction
116
-  (0.0ms) begin transaction
117
- ------------------------------
118
- OodAppkitTest: test_shell_urls
119
- ------------------------------
120
-  (0.1ms) rollback transaction
121
-  (0.1ms) begin transaction
122
- ------------------------------
123
- OodAppkitTest: test_shell_urls
124
- ------------------------------
125
-  (0.1ms) rollback transaction
126
-  (0.1ms) begin transaction
127
- ------------------------------
128
- OodAppkitTest: test_files_urls
129
- ------------------------------
130
-  (0.1ms) rollback transaction
131
-  (0.1ms) begin transaction
132
- -------------------------
133
- OodAppkitTest: test_truth
134
- -------------------------
135
-  (0.0ms) rollback transaction
136
-  (0.1ms) begin transaction
137
- -------------------------
138
- OodAppkitTest: test_truth
139
- -------------------------
140
-  (0.1ms) rollback transaction
141
-  (0.0ms) begin transaction
142
- ------------------------------
143
- OodAppkitTest: test_files_urls
144
- ------------------------------
145
-  (0.1ms) rollback transaction
146
-  (0.0ms) begin transaction
147
- ------------------------------
148
- OodAppkitTest: test_shell_urls
149
- ------------------------------
150
-  (0.1ms) rollback transaction
151
-  (0.1ms) begin transaction
152
- ------------------------------
153
- OodAppkitTest: test_shell_urls
154
- ------------------------------
155
-  (0.1ms) rollback transaction
156
-  (0.0ms) begin transaction
157
- ------------------------------
158
- OodAppkitTest: test_files_urls
159
- ------------------------------
160
-  (0.1ms) rollback transaction
161
-  (0.1ms) begin transaction
162
- -------------------------
163
- OodAppkitTest: test_truth
164
- -------------------------
165
-  (0.0ms) rollback transaction
166
-  (0.1ms) begin transaction
167
- ------------------------------
168
- OodAppkitTest: test_files_urls
169
- ------------------------------
170
-  (0.1ms) rollback transaction
171
-  (0.1ms) begin transaction
172
- -------------------------
173
- OodAppkitTest: test_truth
174
- -------------------------
175
-  (0.1ms) rollback transaction
176
-  (0.0ms) begin transaction
177
- ------------------------------
178
- OodAppkitTest: test_shell_urls
179
- ------------------------------
180
-  (0.1ms) rollback transaction
181
-  (0.1ms) begin transaction
182
- ------------------------------
183
- OodAppkitTest: test_shell_urls
184
- ------------------------------
185
-  (0.1ms) rollback transaction
186
-  (0.0ms) begin transaction
187
- ------------------------------
188
- OodAppkitTest: test_files_urls
189
- ------------------------------
190
-  (0.1ms) rollback transaction
191
-  (0.0ms) begin transaction
192
- -------------------------
193
- OodAppkitTest: test_truth
194
- -------------------------
195
-  (0.0ms) rollback transaction
196
-  (0.1ms) begin transaction
197
- ------------------------------
198
- OodAppkitTest: test_shell_urls
199
- ------------------------------
200
-  (0.1ms) rollback transaction
201
-  (0.0ms) begin transaction
202
- ------------------------------
203
- OodAppkitTest: test_files_urls
204
- ------------------------------
205
-  (0.1ms) rollback transaction
206
-  (0.0ms) begin transaction
207
- -------------------------
208
- OodAppkitTest: test_truth
209
- -------------------------
210
-  (0.0ms) rollback transaction
211
-  (0.1ms) begin transaction
212
- ------------------------------
213
- OodAppkitTest: test_files_urls
214
- ------------------------------
215
-  (0.1ms) rollback transaction
216
-  (0.0ms) begin transaction
217
- ------------------------------
218
- OodAppkitTest: test_shell_urls
219
- ------------------------------
220
-  (0.1ms) rollback transaction
221
-  (0.1ms) begin transaction
222
- -------------------------
223
- OodAppkitTest: test_truth
224
- -------------------------
225
-  (0.1ms) rollback transaction
226
-  (0.1ms) begin transaction
227
- ------------------------------
228
- OodAppkitTest: test_shell_urls
229
- ------------------------------
230
-  (0.1ms) rollback transaction
231
-  (0.0ms) begin transaction
232
- -------------------------
233
- OodAppkitTest: test_truth
234
- -------------------------
235
-  (0.0ms) rollback transaction
236
-  (0.0ms) begin transaction
237
- ------------------------------
238
- OodAppkitTest: test_files_urls
239
- ------------------------------
240
-  (0.1ms) rollback transaction
241
-  (0.1ms) begin transaction
242
- ------------------------------
243
- OodAppkitTest: test_files_urls
244
- ------------------------------
245
-  (0.1ms) rollback transaction
246
-  (0.0ms) begin transaction
247
- -------------------------
248
- OodAppkitTest: test_truth
249
- -------------------------
250
-  (0.0ms) rollback transaction
251
-  (0.0ms) begin transaction
252
- ------------------------------
253
- OodAppkitTest: test_shell_urls
254
- ------------------------------
255
-  (0.1ms) rollback transaction
256
-  (0.1ms) begin transaction
257
- -------------------------
258
- OodAppkitTest: test_truth
259
- -------------------------
260
-  (0.1ms) rollback transaction
261
-  (0.0ms) begin transaction
262
- ------------------------------
263
- OodAppkitTest: test_files_urls
264
- ------------------------------
265
-  (0.1ms) rollback transaction
266
-  (0.0ms) begin transaction
267
- ------------------------------
268
- OodAppkitTest: test_shell_urls
269
- ------------------------------
270
-  (0.1ms) rollback transaction
271
-  (0.1ms) begin transaction
272
- -------------------------
273
- OodAppkitTest: test_truth
274
- -------------------------
275
-  (0.1ms) rollback transaction
276
-  (0.0ms) begin transaction
277
- ------------------------------
278
- OodAppkitTest: test_files_urls
279
- ------------------------------
280
-  (0.1ms) rollback transaction
281
-  (0.0ms) begin transaction
282
- ------------------------------
283
- OodAppkitTest: test_shell_urls
284
- ------------------------------
285
-  (0.1ms) rollback transaction
286
-  (0.1ms) begin transaction
287
- -------------------------------
288
- OodAppkitTest: test_public_urls
289
- -------------------------------
290
-  (0.1ms) rollback transaction
291
-  (0.0ms) begin transaction
292
- ------------------------------
293
- OodAppkitTest: test_shell_urls
294
- ------------------------------
295
-  (0.1ms) rollback transaction
296
-  (0.0ms) begin transaction
297
- -------------------------
298
- OodAppkitTest: test_truth
299
- -------------------------
300
-  (0.0ms) rollback transaction
301
-  (0.0ms) begin transaction
302
- ------------------------------
303
- OodAppkitTest: test_files_urls
304
- ------------------------------
305
-  (0.0ms) rollback transaction