marti 0.1.0

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.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/stylesheets/markdown_articles/markdown_articles.css +4 -0
  5. data/app/controllers/marti/application_controller.rb +4 -0
  6. data/app/controllers/marti/marticles_controller.rb +27 -0
  7. data/app/helpers/marti/application_helper.rb +4 -0
  8. data/app/helpers/marti/marti_helper.rb +4 -0
  9. data/app/models/marti/marticle.rb +15 -0
  10. data/config/routes.rb +4 -0
  11. data/lib/marti.rb +51 -0
  12. data/lib/marti/engine.rb +5 -0
  13. data/lib/marti/errors/errors.rb +7 -0
  14. data/lib/marti/renderers/html_with_pygments.rb +12 -0
  15. data/lib/marti/services/marticle_builder.rb +28 -0
  16. data/lib/marti/services/marticle_parser.rb +116 -0
  17. data/lib/marti/version.rb +3 -0
  18. data/lib/tasks/marti_tasks.rake +4 -0
  19. data/test/dummy/README.rdoc +28 -0
  20. data/test/dummy/Rakefile +6 -0
  21. data/test/dummy/app/assets/javascripts/application.js +13 -0
  22. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  23. data/test/dummy/app/controllers/application_controller.rb +5 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/bin/bundle +3 -0
  27. data/test/dummy/bin/rails +4 -0
  28. data/test/dummy/bin/rake +4 -0
  29. data/test/dummy/config.ru +4 -0
  30. data/test/dummy/config/application.rb +23 -0
  31. data/test/dummy/config/boot.rb +5 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +29 -0
  35. data/test/dummy/config/environments/production.rb +80 -0
  36. data/test/dummy/config/environments/test.rb +36 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  39. data/test/dummy/config/initializers/inflections.rb +16 -0
  40. data/test/dummy/config/initializers/mime_types.rb +5 -0
  41. data/test/dummy/config/initializers/secret_token.rb +12 -0
  42. data/test/dummy/config/initializers/session_store.rb +3 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +23 -0
  45. data/test/dummy/config/routes.rb +4 -0
  46. data/test/dummy/log/development.log +47 -0
  47. data/test/dummy/log/test.log +2090 -0
  48. data/test/dummy/public/404.html +58 -0
  49. data/test/dummy/public/422.html +58 -0
  50. data/test/dummy/public/500.html +57 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/fixtures/test.md +6 -0
  53. data/test/fixtures/test_with_cut.md +9 -0
  54. data/test/fixtures/test_with_updated_at.md +4 -0
  55. data/test/integration/navigation_test.rb +10 -0
  56. data/test/marti_test.rb +28 -0
  57. data/test/models/marticle_test.rb +16 -0
  58. data/test/services/marticle_builder_test.rb +36 -0
  59. data/test/services/marticle_parser_test.rb +47 -0
  60. data/test/test_helper.rb +19 -0
  61. metadata +200 -0
@@ -0,0 +1,5 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
@@ -0,0 +1,23 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require(*Rails.groups)
6
+ require "marti"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
15
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
16
+ # config.time_zone = 'Central Time (US & Canada)'
17
+
18
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
19
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
20
+ # config.i18n.default_locale = :de
21
+ end
22
+ end
23
+
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: postgresql
8
+ database: dummy_dev
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: postgresql
17
+ database: dummy_test
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: postgresql
23
+ database: dummy
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Dummy::Application.initialize!
@@ -0,0 +1,29 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+ end
@@ -0,0 +1,80 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end
@@ -0,0 +1,36 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '06c186ad42b60b127f45e960c1a6ca39abfcab0e7d0096ea8a8d5d0f1471c209bc6a92595fd0e40aadd9cf0a556aea6b762fc725308de07dfe2144678ea6845b'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Marti::Engine => "/marti"
4
+ end
@@ -0,0 +1,47 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-08-09 08:57:09 +0100
4
+
5
+ ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
6
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:546:in `retrieve_connection'
7
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:79:in `retrieve_connection'
8
+ activerecord (4.0.0) lib/active_record/connection_handling.rb:53:in `connection'
9
+ activerecord (4.0.0) lib/active_record/query_cache.rb:51:in `restore_query_cache_settings'
10
+ activerecord (4.0.0) lib/active_record/query_cache.rb:43:in `rescue in call'
11
+ activerecord (4.0.0) lib/active_record/query_cache.rb:32:in `call'
12
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
13
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
14
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2747606591976417971__call__callbacks'
16
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
17
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
18
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
19
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
23
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
24
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
25
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
26
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
27
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
28
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
29
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
30
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
31
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
32
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
33
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
34
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
35
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
36
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
37
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
38
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
39
+ /Users/maxdupenois/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
40
+ /Users/maxdupenois/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
41
+ /Users/maxdupenois/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
42
+
43
+
44
+ Rendered /Users/maxdupenois/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
45
+ Rendered /Users/maxdupenois/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
46
+ Rendered /Users/maxdupenois/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
47
+ Rendered /Users/maxdupenois/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
@@ -0,0 +1,2090 @@
1
+  (0.1ms) BEGIN
2
+ --------------------------------
3
+ MarkdownArticlesTest: test_truth
4
+ --------------------------------
5
+  (0.2ms) ROLLBACK
6
+  (0.1ms) BEGIN
7
+ ---------------------------------------------------
8
+ MarkdownArticlesTest: test_can_get_a_config_setting
9
+ ---------------------------------------------------
10
+  (0.1ms) ROLLBACK
11
+  (0.1ms) BEGIN
12
+ --------------------------------
13
+ MarkdownArticlesTest: test_truth
14
+ --------------------------------
15
+  (0.1ms) ROLLBACK
16
+  (0.1ms) BEGIN
17
+ ---------------------------------------------------
18
+ MarkdownArticlesTest: test_can_get_a_config_setting
19
+ ---------------------------------------------------
20
+  (0.2ms) ROLLBACK
21
+  (0.1ms) BEGIN
22
+ --------------------------------
23
+ MarkdownArticlesTest: test_truth
24
+ --------------------------------
25
+  (0.2ms) ROLLBACK
26
+  (0.2ms) BEGIN
27
+ --------------------------------------------------------------------------------
28
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
29
+ --------------------------------------------------------------------------------
30
+  (0.2ms) ROLLBACK
31
+  (0.1ms) BEGIN
32
+ -----------------------------------------------------------
33
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
34
+ -----------------------------------------------------------
35
+  (0.1ms) ROLLBACK
36
+  (0.1ms) BEGIN
37
+ --------------------------------
38
+ MarkdownArticlesTest: test_truth
39
+ --------------------------------
40
+  (0.2ms) ROLLBACK
41
+  (0.3ms) BEGIN
42
+ --------------------------------------------------------------------------------
43
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
44
+ --------------------------------------------------------------------------------
45
+  (0.2ms) ROLLBACK
46
+  (0.1ms) BEGIN
47
+ -----------------------------------------------------------
48
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
49
+ -----------------------------------------------------------
50
+  (0.1ms) ROLLBACK
51
+  (0.1ms) BEGIN
52
+ --------------------------------
53
+ MarkdownArticlesTest: test_truth
54
+ --------------------------------
55
+  (0.1ms) ROLLBACK
56
+  (0.1ms) BEGIN
57
+ --------------------------------------------------------------------------------
58
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
59
+ --------------------------------------------------------------------------------
60
+  (0.3ms) ROLLBACK
61
+  (0.1ms) BEGIN
62
+ -----------------------------------------------------------
63
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
64
+ -----------------------------------------------------------
65
+  (0.2ms) ROLLBACK
66
+  (0.1ms) BEGIN
67
+ --------------------------------
68
+ MarkdownArticlesTest: test_truth
69
+ --------------------------------
70
+  (0.0ms) ROLLBACK
71
+  (0.1ms) BEGIN
72
+ --------------------------------------------------------------------------------
73
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
74
+ --------------------------------------------------------------------------------
75
+  (0.1ms) ROLLBACK
76
+  (0.2ms) BEGIN
77
+ -----------------------------------------------------------
78
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
79
+ -----------------------------------------------------------
80
+  (0.3ms) ROLLBACK
81
+  (0.1ms) BEGIN
82
+ --------------------------------
83
+ MarkdownArticlesTest: test_truth
84
+ --------------------------------
85
+  (0.2ms) ROLLBACK
86
+  (0.1ms) BEGIN
87
+ --------------------------------------------------------------------------------
88
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
89
+ --------------------------------------------------------------------------------
90
+  (0.2ms) ROLLBACK
91
+  (0.1ms) BEGIN
92
+ -----------------------------------------------------------
93
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
94
+ -----------------------------------------------------------
95
+  (0.1ms) ROLLBACK
96
+  (0.1ms) BEGIN
97
+ --------------------------------
98
+ MarkdownArticlesTest: test_truth
99
+ --------------------------------
100
+  (0.1ms) ROLLBACK
101
+  (0.2ms) BEGIN
102
+ --------------------------------------------------------------------------------
103
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
104
+ --------------------------------------------------------------------------------
105
+  (0.2ms) ROLLBACK
106
+  (0.1ms) BEGIN
107
+ -----------------------------------------------------------
108
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
109
+ -----------------------------------------------------------
110
+  (0.1ms) ROLLBACK
111
+  (0.1ms) BEGIN
112
+ --------------------------------
113
+ MarkdownArticlesTest: test_truth
114
+ --------------------------------
115
+  (0.1ms) ROLLBACK
116
+  (0.3ms) BEGIN
117
+ --------------------------------------------------------------------------------
118
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
119
+ --------------------------------------------------------------------------------
120
+  (0.3ms) ROLLBACK
121
+  (0.1ms) BEGIN
122
+ -----------------------------------------------------------
123
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
124
+ -----------------------------------------------------------
125
+  (0.2ms) ROLLBACK
126
+  (0.1ms) BEGIN
127
+ --------------------------------
128
+ MarkdownArticlesTest: test_truth
129
+ --------------------------------
130
+  (0.1ms) ROLLBACK
131
+  (0.1ms) BEGIN
132
+ --------------------------------------------------------------------------------
133
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
134
+ --------------------------------------------------------------------------------
135
+  (0.1ms) ROLLBACK
136
+  (0.1ms) BEGIN
137
+ -----------------------------------------------------------
138
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
139
+ -----------------------------------------------------------
140
+  (0.1ms) ROLLBACK
141
+  (0.1ms) BEGIN
142
+ --------------------------------
143
+ MarkdownArticlesTest: test_truth
144
+ --------------------------------
145
+  (0.0ms) ROLLBACK
146
+  (0.3ms) BEGIN
147
+ --------------------------------------------------------------------------------
148
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
149
+ --------------------------------------------------------------------------------
150
+  (0.1ms) ROLLBACK
151
+  (0.1ms) BEGIN
152
+ ---------------------------------------------------------
153
+ MarkdownArticleTest: test_can_build_an_individual_article
154
+ ---------------------------------------------------------
155
+  (0.3ms) ROLLBACK
156
+  (0.1ms) BEGIN
157
+ -----------------------------------------------------------
158
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
159
+ -----------------------------------------------------------
160
+  (0.1ms) ROLLBACK
161
+  (0.1ms) BEGIN
162
+ --------------------------------
163
+ MarkdownArticlesTest: test_truth
164
+ --------------------------------
165
+  (0.2ms) ROLLBACK
166
+  (0.1ms) BEGIN
167
+ --------------------------------------------------------------------------------
168
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
169
+ --------------------------------------------------------------------------------
170
+  (0.1ms) ROLLBACK
171
+  (0.1ms) BEGIN
172
+ ---------------------------------------------------------
173
+ MarkdownArticleTest: test_can_build_an_individual_article
174
+ ---------------------------------------------------------
175
+  (0.2ms) ROLLBACK
176
+  (0.3ms) BEGIN
177
+ -----------------------------------------------------------
178
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
179
+ -----------------------------------------------------------
180
+  (0.3ms) ROLLBACK
181
+  (0.1ms) BEGIN
182
+ --------------------------------
183
+ MarkdownArticlesTest: test_truth
184
+ --------------------------------
185
+  (0.2ms) ROLLBACK
186
+  (0.1ms) BEGIN
187
+ --------------------------------------------------------------------------------
188
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
189
+ --------------------------------------------------------------------------------
190
+  (0.1ms) ROLLBACK
191
+  (0.1ms) BEGIN
192
+ ---------------------------------------------------------
193
+ MarkdownArticleTest: test_can_build_an_individual_article
194
+ ---------------------------------------------------------
195
+  (0.1ms) ROLLBACK
196
+  (0.1ms) BEGIN
197
+ -----------------------------------------------------------
198
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
199
+ -----------------------------------------------------------
200
+  (0.1ms) ROLLBACK
201
+  (0.1ms) BEGIN
202
+ --------------------------------
203
+ MarkdownArticlesTest: test_truth
204
+ --------------------------------
205
+  (0.1ms) ROLLBACK
206
+  (0.3ms) BEGIN
207
+ --------------------------------------------------------------------------------
208
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
209
+ --------------------------------------------------------------------------------
210
+  (0.2ms) ROLLBACK
211
+  (0.1ms) BEGIN
212
+ ---------------------------------------------------------
213
+ MarkdownArticleTest: test_can_build_an_individual_article
214
+ ---------------------------------------------------------
215
+  (0.1ms) ROLLBACK
216
+  (0.2ms) BEGIN
217
+ -----------------------------------------------------------
218
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
219
+ -----------------------------------------------------------
220
+  (0.1ms) ROLLBACK
221
+  (0.1ms) BEGIN
222
+ --------------------------------
223
+ MarkdownArticlesTest: test_truth
224
+ --------------------------------
225
+  (0.0ms) ROLLBACK
226
+  (0.1ms) BEGIN
227
+ --------------------------------------------------------------------------------
228
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
229
+ --------------------------------------------------------------------------------
230
+  (0.3ms) ROLLBACK
231
+  (0.1ms) BEGIN
232
+ ---------------------------------------------------------
233
+ MarkdownArticleTest: test_can_build_an_individual_article
234
+ ---------------------------------------------------------
235
+  (0.1ms) ROLLBACK
236
+  (0.2ms) BEGIN
237
+ -----------------------------------------------------------
238
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
239
+ -----------------------------------------------------------
240
+  (0.1ms) ROLLBACK
241
+  (0.1ms) BEGIN
242
+ --------------------------------
243
+ MarkdownArticlesTest: test_truth
244
+ --------------------------------
245
+  (0.2ms) ROLLBACK
246
+  (0.2ms) BEGIN
247
+ --------------------------------------------------------------------------------
248
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
249
+ --------------------------------------------------------------------------------
250
+  (0.2ms) ROLLBACK
251
+  (0.1ms) BEGIN
252
+ ---------------------------------------------------------
253
+ MarkdownArticleTest: test_can_build_an_individual_article
254
+ ---------------------------------------------------------
255
+  (0.1ms) ROLLBACK
256
+  (0.1ms) BEGIN
257
+ -----------------------------------------------------------
258
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
259
+ -----------------------------------------------------------
260
+  (0.2ms) ROLLBACK
261
+  (0.1ms) BEGIN
262
+ --------------------------------
263
+ MarkdownArticlesTest: test_truth
264
+ --------------------------------
265
+  (0.1ms) ROLLBACK
266
+  (0.3ms) BEGIN
267
+ --------------------------------------------------------------------------------
268
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
269
+ --------------------------------------------------------------------------------
270
+  (0.2ms) ROLLBACK
271
+  (0.1ms) BEGIN
272
+ ---------------------------------------------------------
273
+ MarkdownArticleTest: test_can_build_an_individual_article
274
+ ---------------------------------------------------------
275
+  (0.3ms) ROLLBACK
276
+  (0.1ms) BEGIN
277
+ -----------------------------------------------------------
278
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
279
+ -----------------------------------------------------------
280
+  (0.1ms) ROLLBACK
281
+  (0.1ms) BEGIN
282
+ --------------------------------
283
+ MarkdownArticlesTest: test_truth
284
+ --------------------------------
285
+  (0.1ms) ROLLBACK
286
+  (0.2ms) BEGIN
287
+ --------------------------------------------------------------------------------
288
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
289
+ --------------------------------------------------------------------------------
290
+  (0.2ms) ROLLBACK
291
+  (0.1ms) BEGIN
292
+ ---------------------------------------------------------
293
+ MarkdownArticleTest: test_can_build_an_individual_article
294
+ ---------------------------------------------------------
295
+  (0.1ms) ROLLBACK
296
+  (0.1ms) BEGIN
297
+ -----------------------------------------------------------
298
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
299
+ -----------------------------------------------------------
300
+  (0.1ms) ROLLBACK
301
+  (0.1ms) BEGIN
302
+ --------------------------------
303
+ MarkdownArticlesTest: test_truth
304
+ --------------------------------
305
+  (0.2ms) ROLLBACK
306
+  (0.2ms) BEGIN
307
+ --------------------------------------------------------------------------------
308
+ MarkdownArticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
309
+ --------------------------------------------------------------------------------
310
+  (0.3ms) ROLLBACK
311
+  (0.1ms) BEGIN
312
+ ---------------------------------------------------------
313
+ MarkdownArticleTest: test_can_build_an_individual_article
314
+ ---------------------------------------------------------
315
+  (0.1ms) ROLLBACK
316
+  (0.2ms) BEGIN
317
+ -----------------------------------------------------------
318
+ MarkdownArticlesTest: test_can_set_and_get_a_config_setting
319
+ -----------------------------------------------------------
320
+  (0.1ms) ROLLBACK
321
+  (0.1ms) BEGIN
322
+ --------------------------------
323
+ MarkdownArticlesTest: test_truth
324
+ --------------------------------
325
+  (0.0ms) ROLLBACK
326
+  (1.3ms) BEGIN
327
+ ------------------------------------------------
328
+ MartiTest: test_can_set_and_get_a_config_setting
329
+ ------------------------------------------------
330
+  (0.3ms) ROLLBACK
331
+  (0.1ms) BEGIN
332
+ ---------------------
333
+ MartiTest: test_truth
334
+ ---------------------
335
+  (0.2ms) ROLLBACK
336
+  (0.0ms) BEGIN
337
+ -------------------------------------------------------------------------
338
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
339
+ -------------------------------------------------------------------------
340
+  (0.1ms) ROLLBACK
341
+  (0.0ms) BEGIN
342
+ --------------------------------------------------
343
+ MarticleTest: test_can_build_an_individual_article
344
+ --------------------------------------------------
345
+  (0.0ms) ROLLBACK
346
+  (0.1ms) BEGIN
347
+ ------------------------------------------------
348
+ MartiTest: test_can_set_and_get_a_config_setting
349
+ ------------------------------------------------
350
+  (0.1ms) ROLLBACK
351
+  (0.2ms) BEGIN
352
+ ---------------------
353
+ MartiTest: test_truth
354
+ ---------------------
355
+  (0.1ms) ROLLBACK
356
+  (0.1ms) BEGIN
357
+ -------------------------------------------------------------------------
358
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
359
+ -------------------------------------------------------------------------
360
+  (0.2ms) ROLLBACK
361
+  (0.1ms) BEGIN
362
+ --------------------------------------------------
363
+ MarticleTest: test_can_build_an_individual_article
364
+ --------------------------------------------------
365
+  (0.1ms) ROLLBACK
366
+  (0.1ms) BEGIN
367
+ ------------------------------------------------
368
+ MartiTest: test_can_set_and_get_a_config_setting
369
+ ------------------------------------------------
370
+  (0.1ms) ROLLBACK
371
+  (0.2ms) BEGIN
372
+ ---------------------
373
+ MartiTest: test_truth
374
+ ---------------------
375
+  (0.2ms) ROLLBACK
376
+  (0.1ms) BEGIN
377
+ -------------------------------------------------------------------------
378
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
379
+ -------------------------------------------------------------------------
380
+  (0.2ms) ROLLBACK
381
+  (0.1ms) BEGIN
382
+ --------------------------------------------------
383
+ MarticleTest: test_can_build_an_individual_article
384
+ --------------------------------------------------
385
+  (0.2ms) ROLLBACK
386
+  (0.2ms) BEGIN
387
+ ------------------------------------------------
388
+ MartiTest: test_can_set_and_get_a_config_setting
389
+ ------------------------------------------------
390
+  (0.2ms) ROLLBACK
391
+  (0.1ms) BEGIN
392
+ ---------------------
393
+ MartiTest: test_truth
394
+ ---------------------
395
+  (0.1ms) ROLLBACK
396
+  (0.2ms) BEGIN
397
+ -------------------------------------------------------------------------
398
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
399
+ -------------------------------------------------------------------------
400
+  (0.3ms) ROLLBACK
401
+  (0.2ms) BEGIN
402
+ --------------------------------------------------
403
+ MarticleTest: test_can_build_an_individual_article
404
+ --------------------------------------------------
405
+  (0.1ms) ROLLBACK
406
+  (0.1ms) BEGIN
407
+ ------------------------------------------------
408
+ MartiTest: test_can_set_and_get_a_config_setting
409
+ ------------------------------------------------
410
+  (0.1ms) ROLLBACK
411
+  (0.1ms) BEGIN
412
+ ---------------------
413
+ MartiTest: test_truth
414
+ ---------------------
415
+  (0.1ms) ROLLBACK
416
+  (0.0ms) BEGIN
417
+ -------------------------------------------------------------------------
418
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
419
+ -------------------------------------------------------------------------
420
+  (0.2ms) ROLLBACK
421
+  (0.1ms) BEGIN
422
+ --------------------------------------------------
423
+ MarticleTest: test_can_build_an_individual_article
424
+ --------------------------------------------------
425
+  (0.1ms) ROLLBACK
426
+  (0.2ms) BEGIN
427
+ ------------------------------------------------
428
+ MartiTest: test_can_set_and_get_a_config_setting
429
+ ------------------------------------------------
430
+  (0.2ms) ROLLBACK
431
+  (0.1ms) BEGIN
432
+ ---------------------
433
+ MartiTest: test_truth
434
+ ---------------------
435
+  (0.2ms) ROLLBACK
436
+  (0.2ms) BEGIN
437
+ -------------------------------------------------------------------------
438
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
439
+ -------------------------------------------------------------------------
440
+  (0.1ms) ROLLBACK
441
+  (0.1ms) BEGIN
442
+ --------------------------------------------------
443
+ MarticleTest: test_can_build_an_individual_article
444
+ --------------------------------------------------
445
+  (0.2ms) ROLLBACK
446
+  (0.2ms) BEGIN
447
+ ------------------------------------------------
448
+ MartiTest: test_can_set_and_get_a_config_setting
449
+ ------------------------------------------------
450
+  (0.1ms) ROLLBACK
451
+  (0.1ms) BEGIN
452
+ ---------------------
453
+ MartiTest: test_truth
454
+ ---------------------
455
+  (0.2ms) ROLLBACK
456
+  (0.2ms) BEGIN
457
+ -------------------------------------------------------------------------
458
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
459
+ -------------------------------------------------------------------------
460
+  (0.1ms) ROLLBACK
461
+  (0.1ms) BEGIN
462
+ --------------------------------------------------
463
+ MarticleTest: test_can_build_an_individual_article
464
+ --------------------------------------------------
465
+  (0.1ms) ROLLBACK
466
+  (0.1ms) BEGIN
467
+ ------------------------------------------------
468
+ MartiTest: test_can_set_and_get_a_config_setting
469
+ ------------------------------------------------
470
+  (0.1ms) ROLLBACK
471
+  (0.1ms) BEGIN
472
+ ---------------------
473
+ MartiTest: test_truth
474
+ ---------------------
475
+  (0.1ms) ROLLBACK
476
+  (0.1ms) BEGIN
477
+ -------------------------------------------------------------------------
478
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
479
+ -------------------------------------------------------------------------
480
+  (0.1ms) ROLLBACK
481
+  (0.1ms) BEGIN
482
+ --------------------------------------------------
483
+ MarticleTest: test_can_build_an_individual_article
484
+ --------------------------------------------------
485
+  (0.1ms) ROLLBACK
486
+  (6.0ms) BEGIN
487
+ -------------------------------------------------------------------------
488
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
489
+ -------------------------------------------------------------------------
490
+  (6.3ms) ROLLBACK
491
+  (0.1ms) BEGIN
492
+ --------------------------------------------------
493
+ MarticleTest: test_can_build_an_individual_article
494
+ --------------------------------------------------
495
+  (0.1ms) ROLLBACK
496
+  (0.1ms) BEGIN
497
+ ------------------------------------------------
498
+ MartiTest: test_can_set_and_get_a_config_setting
499
+ ------------------------------------------------
500
+  (0.1ms) ROLLBACK
501
+  (0.1ms) BEGIN
502
+ ---------------------
503
+ MartiTest: test_truth
504
+ ---------------------
505
+  (0.1ms) ROLLBACK
506
+  (0.1ms) BEGIN
507
+ ---------------------------------------------------------------------------
508
+ MarticleParser: test_can_build_a_set_of_markdown_articles_given_a_directory
509
+ ---------------------------------------------------------------------------
510
+  (0.1ms) ROLLBACK
511
+  (0.1ms) BEGIN
512
+ ----------------------------------------------------
513
+ MarticleParser: test_can_build_an_individual_article
514
+ ----------------------------------------------------
515
+  (0.1ms) ROLLBACK
516
+  (0.0ms) BEGIN
517
+ ------------------------------------------------
518
+ MartiTest: test_can_set_and_get_a_config_setting
519
+ ------------------------------------------------
520
+  (0.1ms) ROLLBACK
521
+  (0.1ms) BEGIN
522
+ ---------------------
523
+ MartiTest: test_truth
524
+ ---------------------
525
+  (0.1ms) ROLLBACK
526
+  (0.1ms) BEGIN
527
+ -------------------------------------------------------------------------
528
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
529
+ -------------------------------------------------------------------------
530
+  (0.1ms) ROLLBACK
531
+  (0.1ms) BEGIN
532
+ --------------------------------------------------
533
+ MarticleTest: test_can_build_an_individual_article
534
+ --------------------------------------------------
535
+  (0.1ms) ROLLBACK
536
+  (0.1ms) BEGIN
537
+ ------------------------------------------------
538
+ MartiTest: test_can_set_and_get_a_config_setting
539
+ ------------------------------------------------
540
+  (0.1ms) ROLLBACK
541
+  (0.1ms) BEGIN
542
+ ---------------------
543
+ MartiTest: test_truth
544
+ ---------------------
545
+  (0.1ms) ROLLBACK
546
+  (0.1ms) BEGIN
547
+ -------------------------------------------------------------------------
548
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
549
+ -------------------------------------------------------------------------
550
+  (0.1ms) ROLLBACK
551
+  (0.1ms) BEGIN
552
+ --------------------------------------------------
553
+ MarticleTest: test_can_build_an_individual_article
554
+ --------------------------------------------------
555
+  (0.1ms) ROLLBACK
556
+  (0.3ms) BEGIN
557
+ -------------------------------------------------------------------------
558
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
559
+ -------------------------------------------------------------------------
560
+  (0.2ms) ROLLBACK
561
+  (0.2ms) BEGIN
562
+ ------------------------------------------------
563
+ MartiTest: test_can_set_and_get_a_config_setting
564
+ ------------------------------------------------
565
+  (0.1ms) ROLLBACK
566
+  (0.1ms) BEGIN
567
+ ---------------------
568
+ MartiTest: test_truth
569
+ ---------------------
570
+  (0.1ms) ROLLBACK
571
+  (0.3ms) BEGIN
572
+ -------------------------------------------------------------------------
573
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
574
+ -------------------------------------------------------------------------
575
+  (0.2ms) ROLLBACK
576
+  (0.1ms) BEGIN
577
+ ------------------------------------------------
578
+ MartiTest: test_can_set_and_get_a_config_setting
579
+ ------------------------------------------------
580
+  (0.1ms) ROLLBACK
581
+  (0.1ms) BEGIN
582
+ ---------------------
583
+ MartiTest: test_truth
584
+ ---------------------
585
+  (0.1ms) ROLLBACK
586
+  (0.1ms) BEGIN
587
+ -------------------------------------------------------------------------
588
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
589
+ -------------------------------------------------------------------------
590
+  (0.2ms) ROLLBACK
591
+  (0.1ms) BEGIN
592
+ ------------------------------------------------
593
+ MartiTest: test_can_set_and_get_a_config_setting
594
+ ------------------------------------------------
595
+  (0.1ms) ROLLBACK
596
+  (0.1ms) BEGIN
597
+ ---------------------
598
+ MartiTest: test_truth
599
+ ---------------------
600
+  (0.1ms) ROLLBACK
601
+  (0.1ms) BEGIN
602
+ -------------------------------------------------------------------------
603
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
604
+ -------------------------------------------------------------------------
605
+  (0.1ms) ROLLBACK
606
+  (0.1ms) BEGIN
607
+ ------------------------------------------------
608
+ MartiTest: test_can_set_and_get_a_config_setting
609
+ ------------------------------------------------
610
+  (0.1ms) ROLLBACK
611
+  (0.1ms) BEGIN
612
+ ---------------------
613
+ MartiTest: test_truth
614
+ ---------------------
615
+  (0.1ms) ROLLBACK
616
+  (0.1ms) BEGIN
617
+ -------------------------------------------------------------------------
618
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
619
+ -------------------------------------------------------------------------
620
+  (0.1ms) ROLLBACK
621
+  (0.1ms) BEGIN
622
+ ------------------------------------------------------------
623
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
624
+ ------------------------------------------------------------
625
+  (0.2ms) ROLLBACK
626
+  (0.1ms) BEGIN
627
+ -----------------------------
628
+ MarticleParserTest: test_file
629
+ -----------------------------
630
+  (0.2ms) ROLLBACK
631
+  (0.1ms) BEGIN
632
+ ------------------------------------------------
633
+ MartiTest: test_can_set_and_get_a_config_setting
634
+ ------------------------------------------------
635
+  (0.1ms) ROLLBACK
636
+  (0.1ms) BEGIN
637
+ ---------------------
638
+ MartiTest: test_truth
639
+ ---------------------
640
+  (0.1ms) ROLLBACK
641
+  (0.1ms) BEGIN
642
+ -------------------------------------------------------------------------
643
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
644
+ -------------------------------------------------------------------------
645
+  (0.1ms) ROLLBACK
646
+  (0.1ms) BEGIN
647
+ ------------------------------------------------
648
+ MartiTest: test_can_set_and_get_a_config_setting
649
+ ------------------------------------------------
650
+  (0.1ms) ROLLBACK
651
+  (0.1ms) BEGIN
652
+ ---------------------
653
+ MartiTest: test_truth
654
+ ---------------------
655
+  (0.1ms) ROLLBACK
656
+  (0.1ms) BEGIN
657
+ ------------------------------------------------------------
658
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
659
+ ------------------------------------------------------------
660
+  (0.1ms) ROLLBACK
661
+  (0.1ms) BEGIN
662
+ -----------------------------
663
+ MarticleParserTest: test_file
664
+ -----------------------------
665
+  (0.1ms) ROLLBACK
666
+  (0.1ms) BEGIN
667
+ -------------------------------------------------------------------------
668
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
669
+ -------------------------------------------------------------------------
670
+  (0.1ms) ROLLBACK
671
+  (0.1ms) BEGIN
672
+ ------------------------------------------------------------
673
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
674
+ ------------------------------------------------------------
675
+  (0.1ms) ROLLBACK
676
+  (0.1ms) BEGIN
677
+ -----------------------------
678
+ MarticleParserTest: test_file
679
+ -----------------------------
680
+  (0.1ms) ROLLBACK
681
+  (0.1ms) BEGIN
682
+ ------------------------------------------------
683
+ MartiTest: test_can_set_and_get_a_config_setting
684
+ ------------------------------------------------
685
+  (0.1ms) ROLLBACK
686
+  (0.1ms) BEGIN
687
+ ---------------------
688
+ MartiTest: test_truth
689
+ ---------------------
690
+  (0.1ms) ROLLBACK
691
+  (0.2ms) BEGIN
692
+ ------------------------------------------------
693
+ MartiTest: test_can_set_and_get_a_config_setting
694
+ ------------------------------------------------
695
+  (0.2ms) ROLLBACK
696
+  (0.1ms) BEGIN
697
+ ---------------------
698
+ MartiTest: test_truth
699
+ ---------------------
700
+  (0.1ms) ROLLBACK
701
+  (0.1ms) BEGIN
702
+ -------------------------------------------------------------------------
703
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
704
+ -------------------------------------------------------------------------
705
+  (0.1ms) ROLLBACK
706
+  (0.1ms) BEGIN
707
+ ------------------------------------------------------------
708
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
709
+ ------------------------------------------------------------
710
+  (0.1ms) ROLLBACK
711
+  (0.1ms) BEGIN
712
+ -----------------------------
713
+ MarticleParserTest: test_file
714
+ -----------------------------
715
+  (0.1ms) ROLLBACK
716
+  (0.1ms) BEGIN
717
+ ------------------------------------------------------------
718
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
719
+ ------------------------------------------------------------
720
+  (0.2ms) ROLLBACK
721
+  (0.1ms) BEGIN
722
+ -----------------------------
723
+ MarticleParserTest: test_file
724
+ -----------------------------
725
+  (0.1ms) ROLLBACK
726
+  (0.1ms) BEGIN
727
+ -------------------------------------------------------------------------
728
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
729
+ -------------------------------------------------------------------------
730
+  (0.1ms) ROLLBACK
731
+  (0.1ms) BEGIN
732
+ ------------------------------------------------
733
+ MartiTest: test_can_set_and_get_a_config_setting
734
+ ------------------------------------------------
735
+  (0.1ms) ROLLBACK
736
+  (0.1ms) BEGIN
737
+ ---------------------
738
+ MartiTest: test_truth
739
+ ---------------------
740
+  (0.1ms) ROLLBACK
741
+  (0.2ms) BEGIN
742
+ ------------------------------------------------------------
743
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
744
+ ------------------------------------------------------------
745
+  (0.1ms) ROLLBACK
746
+  (0.1ms) BEGIN
747
+ -----------------------------
748
+ MarticleParserTest: test_file
749
+ -----------------------------
750
+  (0.1ms) ROLLBACK
751
+  (0.0ms) BEGIN
752
+ -------------------------------------------------------------------------
753
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
754
+ -------------------------------------------------------------------------
755
+  (0.1ms) ROLLBACK
756
+  (0.1ms) BEGIN
757
+ ------------------------------------------------
758
+ MartiTest: test_can_set_and_get_a_config_setting
759
+ ------------------------------------------------
760
+  (0.1ms) ROLLBACK
761
+  (0.1ms) BEGIN
762
+ ---------------------
763
+ MartiTest: test_truth
764
+ ---------------------
765
+  (0.1ms) ROLLBACK
766
+  (0.2ms) BEGIN
767
+ -------------------------------------------------------------------------
768
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
769
+ -------------------------------------------------------------------------
770
+  (0.1ms) ROLLBACK
771
+  (0.1ms) BEGIN
772
+ ------------------------------------------------
773
+ MartiTest: test_can_set_and_get_a_config_setting
774
+ ------------------------------------------------
775
+  (0.1ms) ROLLBACK
776
+  (0.1ms) BEGIN
777
+ ---------------------
778
+ MartiTest: test_truth
779
+ ---------------------
780
+  (0.1ms) ROLLBACK
781
+  (0.1ms) BEGIN
782
+ ------------------------------------------------------------
783
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
784
+ ------------------------------------------------------------
785
+  (0.1ms) ROLLBACK
786
+  (0.1ms) BEGIN
787
+ -----------------------------
788
+ MarticleParserTest: test_file
789
+ -----------------------------
790
+  (0.1ms) ROLLBACK
791
+  (0.1ms) BEGIN
792
+ ------------------------------------------------
793
+ MartiTest: test_can_set_and_get_a_config_setting
794
+ ------------------------------------------------
795
+  (0.1ms) ROLLBACK
796
+  (0.1ms) BEGIN
797
+ ---------------------
798
+ MartiTest: test_truth
799
+ ---------------------
800
+  (0.1ms) ROLLBACK
801
+  (0.1ms) BEGIN
802
+ ------------------------------------------------------------
803
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
804
+ ------------------------------------------------------------
805
+  (0.1ms) ROLLBACK
806
+  (0.1ms) BEGIN
807
+ -----------------------------
808
+ MarticleParserTest: test_file
809
+ -----------------------------
810
+  (0.1ms) ROLLBACK
811
+  (0.1ms) BEGIN
812
+ -------------------------------------------------------------------------
813
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
814
+ -------------------------------------------------------------------------
815
+  (0.1ms) ROLLBACK
816
+  (0.1ms) BEGIN
817
+ ------------------------------------------------
818
+ MartiTest: test_can_set_and_get_a_config_setting
819
+ ------------------------------------------------
820
+  (0.1ms) ROLLBACK
821
+  (0.1ms) BEGIN
822
+ ---------------------
823
+ MartiTest: test_truth
824
+ ---------------------
825
+  (0.1ms) ROLLBACK
826
+  (0.1ms) BEGIN
827
+ ------------------------------------------------------------
828
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
829
+ ------------------------------------------------------------
830
+  (0.1ms) ROLLBACK
831
+  (0.1ms) BEGIN
832
+ -----------------------------
833
+ MarticleParserTest: test_file
834
+ -----------------------------
835
+  (0.1ms) ROLLBACK
836
+  (0.1ms) BEGIN
837
+ -------------------------------------------------------------------------
838
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
839
+ -------------------------------------------------------------------------
840
+  (0.1ms) ROLLBACK
841
+  (0.1ms) BEGIN
842
+ ------------------------------------------------
843
+ MartiTest: test_can_set_and_get_a_config_setting
844
+ ------------------------------------------------
845
+  (0.1ms) ROLLBACK
846
+  (0.1ms) BEGIN
847
+ ---------------------
848
+ MartiTest: test_truth
849
+ ---------------------
850
+  (0.1ms) ROLLBACK
851
+  (0.1ms) BEGIN
852
+ -------------------------------------------------------------------------
853
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
854
+ -------------------------------------------------------------------------
855
+  (0.1ms) ROLLBACK
856
+  (0.1ms) BEGIN
857
+ ------------------------------------------------------------
858
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
859
+ ------------------------------------------------------------
860
+  (0.1ms) ROLLBACK
861
+  (0.1ms) BEGIN
862
+ -----------------------------
863
+ MarticleParserTest: test_file
864
+ -----------------------------
865
+  (0.1ms) ROLLBACK
866
+  (0.1ms) BEGIN
867
+ -------------------------------------------------------------------------
868
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
869
+ -------------------------------------------------------------------------
870
+  (0.1ms) ROLLBACK
871
+  (0.1ms) BEGIN
872
+ ------------------------------------------------------------
873
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
874
+ ------------------------------------------------------------
875
+  (0.1ms) ROLLBACK
876
+  (0.1ms) BEGIN
877
+ -----------------------------
878
+ MarticleParserTest: test_file
879
+ -----------------------------
880
+  (0.1ms) ROLLBACK
881
+  (0.1ms) BEGIN
882
+ ------------------------------------------------
883
+ MartiTest: test_can_set_and_get_a_config_setting
884
+ ------------------------------------------------
885
+  (0.1ms) ROLLBACK
886
+  (0.1ms) BEGIN
887
+ ---------------------
888
+ MartiTest: test_truth
889
+ ---------------------
890
+  (0.1ms) ROLLBACK
891
+  (0.1ms) BEGIN
892
+ ------------------------------------------------------------
893
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
894
+ ------------------------------------------------------------
895
+  (0.1ms) ROLLBACK
896
+  (0.3ms) BEGIN
897
+ -----------------------------
898
+ MarticleParserTest: test_file
899
+ -----------------------------
900
+  (0.1ms) ROLLBACK
901
+  (0.1ms) BEGIN
902
+ -------------------------------------------------------------------------
903
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
904
+ -------------------------------------------------------------------------
905
+  (0.1ms) ROLLBACK
906
+  (0.1ms) BEGIN
907
+ ------------------------------------------------
908
+ MartiTest: test_can_set_and_get_a_config_setting
909
+ ------------------------------------------------
910
+  (0.1ms) ROLLBACK
911
+  (0.1ms) BEGIN
912
+ ---------------------
913
+ MartiTest: test_truth
914
+ ---------------------
915
+  (0.1ms) ROLLBACK
916
+  (0.2ms) BEGIN
917
+ ------------------------------------------------------------
918
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
919
+ ------------------------------------------------------------
920
+  (0.1ms) ROLLBACK
921
+  (0.1ms) BEGIN
922
+ -----------------------------
923
+ MarticleParserTest: test_file
924
+ -----------------------------
925
+  (0.1ms) ROLLBACK
926
+  (0.1ms) BEGIN
927
+ -------------------------------------------------------------------------
928
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
929
+ -------------------------------------------------------------------------
930
+  (0.1ms) ROLLBACK
931
+  (0.1ms) BEGIN
932
+ ------------------------------------------------
933
+ MartiTest: test_can_set_and_get_a_config_setting
934
+ ------------------------------------------------
935
+  (0.1ms) ROLLBACK
936
+  (0.1ms) BEGIN
937
+ ---------------------
938
+ MartiTest: test_truth
939
+ ---------------------
940
+  (0.1ms) ROLLBACK
941
+  (0.1ms) BEGIN
942
+ -------------------------------------------------------------------------
943
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
944
+ -------------------------------------------------------------------------
945
+  (0.1ms) ROLLBACK
946
+  (0.1ms) BEGIN
947
+ ------------------------------------------------
948
+ MartiTest: test_can_set_and_get_a_config_setting
949
+ ------------------------------------------------
950
+  (0.1ms) ROLLBACK
951
+  (0.1ms) BEGIN
952
+ ---------------------
953
+ MartiTest: test_truth
954
+ ---------------------
955
+  (0.1ms) ROLLBACK
956
+  (0.1ms) BEGIN
957
+ ------------------------------------------------------------
958
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
959
+ ------------------------------------------------------------
960
+  (0.1ms) ROLLBACK
961
+  (0.1ms) BEGIN
962
+ -----------------------------
963
+ MarticleParserTest: test_file
964
+ -----------------------------
965
+  (0.1ms) ROLLBACK
966
+  (0.1ms) BEGIN
967
+ ------------------------------------------------------------
968
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
969
+ ------------------------------------------------------------
970
+  (0.1ms) ROLLBACK
971
+  (0.1ms) BEGIN
972
+ -----------------------------
973
+ MarticleParserTest: test_file
974
+ -----------------------------
975
+  (0.1ms) ROLLBACK
976
+  (0.1ms) BEGIN
977
+ ------------------------------------------------
978
+ MartiTest: test_can_set_and_get_a_config_setting
979
+ ------------------------------------------------
980
+  (0.1ms) ROLLBACK
981
+  (0.1ms) BEGIN
982
+ ---------------------
983
+ MartiTest: test_truth
984
+ ---------------------
985
+  (0.1ms) ROLLBACK
986
+  (0.0ms) BEGIN
987
+ -------------------------------------------------------------------------
988
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
989
+ -------------------------------------------------------------------------
990
+  (0.1ms) ROLLBACK
991
+  (0.1ms) BEGIN
992
+ ------------------------------------------------
993
+ MartiTest: test_can_set_and_get_a_config_setting
994
+ ------------------------------------------------
995
+  (0.1ms) ROLLBACK
996
+  (0.1ms) BEGIN
997
+ ------------------------------------------------------------
998
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
999
+ ------------------------------------------------------------
1000
+  (0.1ms) ROLLBACK
1001
+  (0.1ms) BEGIN
1002
+ -----------------------------
1003
+ MarticleParserTest: test_file
1004
+ -----------------------------
1005
+  (0.1ms) ROLLBACK
1006
+  (0.1ms) BEGIN
1007
+ -------------------------------------------------------------------------
1008
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1009
+ -------------------------------------------------------------------------
1010
+  (0.1ms) ROLLBACK
1011
+  (0.1ms) BEGIN
1012
+ ------------------------------------------------------------
1013
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
1014
+ ------------------------------------------------------------
1015
+  (0.1ms) ROLLBACK
1016
+  (0.1ms) BEGIN
1017
+ -----------------------------
1018
+ MarticleParserTest: test_file
1019
+ -----------------------------
1020
+  (0.1ms) ROLLBACK
1021
+  (0.3ms) BEGIN
1022
+ -------------------------------------------------------------------------
1023
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1024
+ -------------------------------------------------------------------------
1025
+  (0.1ms) ROLLBACK
1026
+  (0.1ms) BEGIN
1027
+ ------------------------------------------------
1028
+ MartiTest: test_can_set_and_get_a_config_setting
1029
+ ------------------------------------------------
1030
+  (0.1ms) ROLLBACK
1031
+  (0.1ms) BEGIN
1032
+ ------------------------------------------------
1033
+ MartiTest: test_can_set_and_get_a_config_setting
1034
+ ------------------------------------------------
1035
+  (0.1ms) ROLLBACK
1036
+  (0.1ms) BEGIN
1037
+ -------------------------------------------------------------------------
1038
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1039
+ -------------------------------------------------------------------------
1040
+  (0.1ms) ROLLBACK
1041
+  (0.1ms) BEGIN
1042
+ ------------------------------------------------------------
1043
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
1044
+ ------------------------------------------------------------
1045
+  (0.1ms) ROLLBACK
1046
+  (0.1ms) BEGIN
1047
+ -----------------------------
1048
+ MarticleParserTest: test_file
1049
+ -----------------------------
1050
+  (0.1ms) ROLLBACK
1051
+  (0.1ms) BEGIN
1052
+ ------------------------------------------------
1053
+ MartiTest: test_can_set_and_get_a_config_setting
1054
+ ------------------------------------------------
1055
+  (0.1ms) ROLLBACK
1056
+  (0.1ms) BEGIN
1057
+ ------------------------------------------------------------
1058
+ MarticleParserTest: test_can_deal_with_a_specific_updated_at
1059
+ ------------------------------------------------------------
1060
+  (0.1ms) ROLLBACK
1061
+  (0.1ms) BEGIN
1062
+ -----------------------------
1063
+ MarticleParserTest: test_file
1064
+ -----------------------------
1065
+  (0.1ms) ROLLBACK
1066
+  (0.0ms) BEGIN
1067
+ -------------------------------------------------------------------------
1068
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1069
+ -------------------------------------------------------------------------
1070
+  (0.1ms) ROLLBACK
1071
+  (0.2ms) BEGIN
1072
+ -------------------------------------------------------------------------
1073
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1074
+ -------------------------------------------------------------------------
1075
+  (0.1ms) ROLLBACK
1076
+  (0.1ms) BEGIN
1077
+ ------------------------------------------------
1078
+ MartiTest: test_can_set_and_get_a_config_setting
1079
+ ------------------------------------------------
1080
+  (0.1ms) ROLLBACK
1081
+  (0.1ms) BEGIN
1082
+ ---------------------------------------------------------
1083
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1084
+ ---------------------------------------------------------
1085
+  (0.1ms) ROLLBACK
1086
+  (0.1ms) BEGIN
1087
+ -----------------------------
1088
+ MarticleParserTest: test_file
1089
+ -----------------------------
1090
+  (0.1ms) ROLLBACK
1091
+  (0.1ms) BEGIN
1092
+ ----------------------------------------------------------------
1093
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1094
+ ----------------------------------------------------------------
1095
+  (0.1ms) ROLLBACK
1096
+  (0.1ms) BEGIN
1097
+ ---------------------------------------------------------
1098
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1099
+ ---------------------------------------------------------
1100
+  (0.2ms) ROLLBACK
1101
+  (0.1ms) BEGIN
1102
+ -----------------------------
1103
+ MarticleParserTest: test_file
1104
+ -----------------------------
1105
+  (0.1ms) ROLLBACK
1106
+  (0.1ms) BEGIN
1107
+ ----------------------------------------------------------------
1108
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1109
+ ----------------------------------------------------------------
1110
+  (0.1ms) ROLLBACK
1111
+  (0.0ms) BEGIN
1112
+ -------------------------------------------------------------------------
1113
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1114
+ -------------------------------------------------------------------------
1115
+  (0.1ms) ROLLBACK
1116
+  (0.1ms) BEGIN
1117
+ ------------------------------------------------
1118
+ MartiTest: test_can_set_and_get_a_config_setting
1119
+ ------------------------------------------------
1120
+  (0.1ms) ROLLBACK
1121
+  (0.1ms) BEGIN
1122
+ -------------------------------------------------------------------------
1123
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1124
+ -------------------------------------------------------------------------
1125
+  (0.1ms) ROLLBACK
1126
+  (0.1ms) BEGIN
1127
+ ---------------------------------------------------------
1128
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1129
+ ---------------------------------------------------------
1130
+  (0.1ms) ROLLBACK
1131
+  (0.1ms) BEGIN
1132
+ -----------------------------
1133
+ MarticleParserTest: test_file
1134
+ -----------------------------
1135
+  (0.0ms) ROLLBACK
1136
+  (0.1ms) BEGIN
1137
+ ----------------------------------------------------------------------
1138
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1139
+ ----------------------------------------------------------------------
1140
+  (0.1ms) ROLLBACK
1141
+  (0.1ms) BEGIN
1142
+ ----------------------------------------------------------------
1143
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1144
+ ----------------------------------------------------------------
1145
+  (0.1ms) ROLLBACK
1146
+  (0.1ms) BEGIN
1147
+ ------------------------------------------------
1148
+ MartiTest: test_can_set_and_get_a_config_setting
1149
+ ------------------------------------------------
1150
+  (0.2ms) ROLLBACK
1151
+  (0.1ms) BEGIN
1152
+ ------------------------------------------------
1153
+ MartiTest: test_can_set_and_get_a_config_setting
1154
+ ------------------------------------------------
1155
+  (0.1ms) ROLLBACK
1156
+  (0.1ms) BEGIN
1157
+ -------------------------------------------------------------------------
1158
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1159
+ -------------------------------------------------------------------------
1160
+  (0.1ms) ROLLBACK
1161
+  (0.1ms) BEGIN
1162
+ ---------------------------------------------------------
1163
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1164
+ ---------------------------------------------------------
1165
+  (0.1ms) ROLLBACK
1166
+  (0.1ms) BEGIN
1167
+ -----------------------------
1168
+ MarticleParserTest: test_file
1169
+ -----------------------------
1170
+  (0.1ms) ROLLBACK
1171
+  (0.1ms) BEGIN
1172
+ ----------------------------------------------------------------------
1173
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1174
+ ----------------------------------------------------------------------
1175
+  (0.1ms) ROLLBACK
1176
+  (0.1ms) BEGIN
1177
+ ----------------------------------------------------------------
1178
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1179
+ ----------------------------------------------------------------
1180
+  (0.1ms) ROLLBACK
1181
+  (0.2ms) BEGIN
1182
+ -------------------------------------------------------------------------
1183
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1184
+ -------------------------------------------------------------------------
1185
+  (0.1ms) ROLLBACK
1186
+  (0.1ms) BEGIN
1187
+ ------------------------------------------------
1188
+ MartiTest: test_can_set_and_get_a_config_setting
1189
+ ------------------------------------------------
1190
+  (0.1ms) ROLLBACK
1191
+  (0.1ms) BEGIN
1192
+ ---------------------------------------------------------
1193
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1194
+ ---------------------------------------------------------
1195
+  (0.1ms) ROLLBACK
1196
+  (0.1ms) BEGIN
1197
+ -----------------------------
1198
+ MarticleParserTest: test_file
1199
+ -----------------------------
1200
+  (0.1ms) ROLLBACK
1201
+  (0.1ms) BEGIN
1202
+ ----------------------------------------------------------------------
1203
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1204
+ ----------------------------------------------------------------------
1205
+  (0.2ms) ROLLBACK
1206
+  (0.1ms) BEGIN
1207
+ ----------------------------------------------------------------
1208
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1209
+ ----------------------------------------------------------------
1210
+  (0.1ms) ROLLBACK
1211
+  (0.1ms) BEGIN
1212
+ ------------------------------------------------
1213
+ MartiTest: test_can_set_and_get_a_config_setting
1214
+ ------------------------------------------------
1215
+  (0.1ms) ROLLBACK
1216
+  (0.1ms) BEGIN
1217
+ ---------------------------------------------------------
1218
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1219
+ ---------------------------------------------------------
1220
+  (0.1ms) ROLLBACK
1221
+  (0.1ms) BEGIN
1222
+ -----------------------------
1223
+ MarticleParserTest: test_file
1224
+ -----------------------------
1225
+  (0.1ms) ROLLBACK
1226
+  (0.1ms) BEGIN
1227
+ ----------------------------------------------------------------------
1228
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1229
+ ----------------------------------------------------------------------
1230
+  (0.2ms) ROLLBACK
1231
+  (0.2ms) BEGIN
1232
+ ----------------------------------------------------------------
1233
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1234
+ ----------------------------------------------------------------
1235
+  (0.1ms) ROLLBACK
1236
+  (0.1ms) BEGIN
1237
+ -------------------------------------------------------------------------
1238
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1239
+ -------------------------------------------------------------------------
1240
+  (0.1ms) ROLLBACK
1241
+  (0.1ms) BEGIN
1242
+ ---------------------------------------------------------
1243
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1244
+ ---------------------------------------------------------
1245
+  (0.1ms) ROLLBACK
1246
+  (0.1ms) BEGIN
1247
+ -----------------------------
1248
+ MarticleParserTest: test_file
1249
+ -----------------------------
1250
+  (0.1ms) ROLLBACK
1251
+  (0.1ms) BEGIN
1252
+ ----------------------------------------------------------------------
1253
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1254
+ ----------------------------------------------------------------------
1255
+  (0.2ms) ROLLBACK
1256
+  (0.1ms) BEGIN
1257
+ ----------------------------------------------------------------
1258
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1259
+ ----------------------------------------------------------------
1260
+  (0.1ms) ROLLBACK
1261
+  (0.1ms) BEGIN
1262
+ -------------------------------------------------------------------------
1263
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1264
+ -------------------------------------------------------------------------
1265
+  (0.1ms) ROLLBACK
1266
+  (0.1ms) BEGIN
1267
+ ------------------------------------------------
1268
+ MartiTest: test_can_set_and_get_a_config_setting
1269
+ ------------------------------------------------
1270
+  (0.1ms) ROLLBACK
1271
+  (0.2ms) BEGIN
1272
+ -------------------------------------------------------------------------
1273
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1274
+ -------------------------------------------------------------------------
1275
+  (0.1ms) ROLLBACK
1276
+  (0.1ms) BEGIN
1277
+ ---------------------------------------------------------
1278
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1279
+ ---------------------------------------------------------
1280
+  (0.1ms) ROLLBACK
1281
+  (0.1ms) BEGIN
1282
+ -----------------------------
1283
+ MarticleParserTest: test_file
1284
+ -----------------------------
1285
+  (0.1ms) ROLLBACK
1286
+  (0.1ms) BEGIN
1287
+ ----------------------------------------------------------------------
1288
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1289
+ ----------------------------------------------------------------------
1290
+  (0.2ms) ROLLBACK
1291
+  (0.1ms) BEGIN
1292
+ ----------------------------------------------------------------
1293
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1294
+ ----------------------------------------------------------------
1295
+  (0.1ms) ROLLBACK
1296
+  (0.1ms) BEGIN
1297
+ ------------------------------------------------
1298
+ MartiTest: test_can_set_and_get_a_config_setting
1299
+ ------------------------------------------------
1300
+  (0.1ms) ROLLBACK
1301
+  (0.1ms) BEGIN
1302
+ ---------------------------------------------------------
1303
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1304
+ ---------------------------------------------------------
1305
+  (0.1ms) ROLLBACK
1306
+  (0.1ms) BEGIN
1307
+ -----------------------------
1308
+ MarticleParserTest: test_file
1309
+ -----------------------------
1310
+  (0.1ms) ROLLBACK
1311
+  (0.1ms) BEGIN
1312
+ ----------------------------------------------------------------------
1313
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1314
+ ----------------------------------------------------------------------
1315
+  (0.2ms) ROLLBACK
1316
+  (0.1ms) BEGIN
1317
+ ----------------------------------------------------------------
1318
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1319
+ ----------------------------------------------------------------
1320
+  (0.1ms) ROLLBACK
1321
+  (0.1ms) BEGIN
1322
+ -------------------------------------------------------------------------
1323
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1324
+ -------------------------------------------------------------------------
1325
+  (0.1ms) ROLLBACK
1326
+  (0.1ms) BEGIN
1327
+ ------------------------------------------------
1328
+ MartiTest: test_can_set_and_get_a_config_setting
1329
+ ------------------------------------------------
1330
+  (0.1ms) ROLLBACK
1331
+  (0.1ms) BEGIN
1332
+ ---------------------------------------------------------
1333
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1334
+ ---------------------------------------------------------
1335
+  (0.1ms) ROLLBACK
1336
+  (0.1ms) BEGIN
1337
+ -----------------------------
1338
+ MarticleParserTest: test_file
1339
+ -----------------------------
1340
+  (0.1ms) ROLLBACK
1341
+  (0.1ms) BEGIN
1342
+ ----------------------------------------------------------------------
1343
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1344
+ ----------------------------------------------------------------------
1345
+  (0.2ms) ROLLBACK
1346
+  (0.1ms) BEGIN
1347
+ ----------------------------------------------------------------
1348
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1349
+ ----------------------------------------------------------------
1350
+  (0.1ms) ROLLBACK
1351
+  (0.1ms) BEGIN
1352
+ -------------------------------------------------------------------------
1353
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1354
+ -------------------------------------------------------------------------
1355
+  (0.1ms) ROLLBACK
1356
+  (0.1ms) BEGIN
1357
+ ------------------------------------------------
1358
+ MartiTest: test_can_set_and_get_a_config_setting
1359
+ ------------------------------------------------
1360
+  (0.1ms) ROLLBACK
1361
+  (0.1ms) BEGIN
1362
+ ------------------------------------------------
1363
+ MartiTest: test_can_set_and_get_a_config_setting
1364
+ ------------------------------------------------
1365
+  (0.1ms) ROLLBACK
1366
+  (0.1ms) BEGIN
1367
+ ---------------------------------------------------------
1368
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1369
+ ---------------------------------------------------------
1370
+  (0.1ms) ROLLBACK
1371
+  (0.1ms) BEGIN
1372
+ -----------------------------
1373
+ MarticleParserTest: test_file
1374
+ -----------------------------
1375
+  (0.1ms) ROLLBACK
1376
+  (0.1ms) BEGIN
1377
+ ----------------------------------------------------------------------
1378
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1379
+ ----------------------------------------------------------------------
1380
+  (0.2ms) ROLLBACK
1381
+  (0.1ms) BEGIN
1382
+ ----------------------------------------------------------------
1383
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1384
+ ----------------------------------------------------------------
1385
+  (0.1ms) ROLLBACK
1386
+  (0.1ms) BEGIN
1387
+ -------------------------------------------------------------------------
1388
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1389
+ -------------------------------------------------------------------------
1390
+  (0.1ms) ROLLBACK
1391
+  (0.1ms) BEGIN
1392
+ ------------------------------------------------
1393
+ MartiTest: test_can_set_and_get_a_config_setting
1394
+ ------------------------------------------------
1395
+  (0.1ms) ROLLBACK
1396
+  (0.1ms) BEGIN
1397
+ -------------------------------------------------------------------------
1398
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1399
+ -------------------------------------------------------------------------
1400
+  (0.1ms) ROLLBACK
1401
+  (0.1ms) BEGIN
1402
+ ---------------------------------------------------------
1403
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1404
+ ---------------------------------------------------------
1405
+  (0.1ms) ROLLBACK
1406
+  (0.1ms) BEGIN
1407
+ -----------------------------
1408
+ MarticleParserTest: test_file
1409
+ -----------------------------
1410
+  (0.1ms) ROLLBACK
1411
+  (0.0ms) BEGIN
1412
+ ----------------------------------------------------------------------
1413
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1414
+ ----------------------------------------------------------------------
1415
+  (0.3ms) ROLLBACK
1416
+  (0.2ms) BEGIN
1417
+ ----------------------------------------------------------------
1418
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1419
+ ----------------------------------------------------------------
1420
+  (0.1ms) ROLLBACK
1421
+  (0.1ms) BEGIN
1422
+ -----------------------------
1423
+ MarticleParserTest: test_file
1424
+ -----------------------------
1425
+  (0.1ms) ROLLBACK
1426
+  (0.1ms) BEGIN
1427
+ ----------------------------------------------------------------------
1428
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1429
+ ----------------------------------------------------------------------
1430
+  (0.2ms) ROLLBACK
1431
+  (0.1ms) BEGIN
1432
+ -------------------------------------------------------------------------
1433
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1434
+ -------------------------------------------------------------------------
1435
+  (0.1ms) ROLLBACK
1436
+  (0.1ms) BEGIN
1437
+ ------------------------------------------------
1438
+ MartiTest: test_can_set_and_get_a_config_setting
1439
+ ------------------------------------------------
1440
+  (0.1ms) ROLLBACK
1441
+  (0.1ms) BEGIN
1442
+ -------------------------------------------------------------------------
1443
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1444
+ -------------------------------------------------------------------------
1445
+  (0.1ms) ROLLBACK
1446
+  (0.1ms) BEGIN
1447
+ -----------------------------
1448
+ MarticleParserTest: test_file
1449
+ -----------------------------
1450
+  (0.1ms) ROLLBACK
1451
+  (0.1ms) BEGIN
1452
+ ----------------------------------------------------------------------
1453
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1454
+ ----------------------------------------------------------------------
1455
+  (0.2ms) ROLLBACK
1456
+  (0.1ms) BEGIN
1457
+ ------------------------------------------------
1458
+ MartiTest: test_can_set_and_get_a_config_setting
1459
+ ------------------------------------------------
1460
+  (0.1ms) ROLLBACK
1461
+  (0.2ms) BEGIN
1462
+ -----------------------------
1463
+ MarticleParserTest: test_file
1464
+ -----------------------------
1465
+  (0.1ms) ROLLBACK
1466
+  (0.2ms) BEGIN
1467
+ ----------------------------------------------------------------------
1468
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1469
+ ----------------------------------------------------------------------
1470
+  (0.2ms) ROLLBACK
1471
+  (0.2ms) BEGIN
1472
+ -----------------------------
1473
+ MarticleParserTest: test_file
1474
+ -----------------------------
1475
+  (0.1ms) ROLLBACK
1476
+  (0.1ms) BEGIN
1477
+ ----------------------------------------------------------------------
1478
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1479
+ ----------------------------------------------------------------------
1480
+  (0.2ms) ROLLBACK
1481
+  (0.2ms) BEGIN
1482
+ -----------------------------
1483
+ MarticleParserTest: test_file
1484
+ -----------------------------
1485
+  (0.1ms) ROLLBACK
1486
+  (0.1ms) BEGIN
1487
+ ----------------------------------------------------------------------
1488
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1489
+ ----------------------------------------------------------------------
1490
+  (0.2ms) ROLLBACK
1491
+  (0.1ms) BEGIN
1492
+ -----------------------------
1493
+ MarticleParserTest: test_file
1494
+ -----------------------------
1495
+  (0.1ms) ROLLBACK
1496
+  (0.1ms) BEGIN
1497
+ ----------------------------------------------------------------------
1498
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1499
+ ----------------------------------------------------------------------
1500
+  (0.2ms) ROLLBACK
1501
+  (0.1ms) BEGIN
1502
+ -----------------------------
1503
+ MarticleParserTest: test_file
1504
+ -----------------------------
1505
+  (0.1ms) ROLLBACK
1506
+  (0.1ms) BEGIN
1507
+ ----------------------------------------------------------------------
1508
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1509
+ ----------------------------------------------------------------------
1510
+  (0.2ms) ROLLBACK
1511
+  (0.1ms) BEGIN
1512
+ -----------------------------
1513
+ MarticleParserTest: test_file
1514
+ -----------------------------
1515
+  (0.1ms) ROLLBACK
1516
+  (0.1ms) BEGIN
1517
+ ----------------------------------------------------------------------
1518
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1519
+ ----------------------------------------------------------------------
1520
+  (0.1ms) ROLLBACK
1521
+  (0.1ms) BEGIN
1522
+ -----------------------------
1523
+ MarticleParserTest: test_file
1524
+ -----------------------------
1525
+  (0.1ms) ROLLBACK
1526
+  (0.1ms) BEGIN
1527
+ ----------------------------------------------------------------------
1528
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1529
+ ----------------------------------------------------------------------
1530
+  (0.1ms) ROLLBACK
1531
+  (0.2ms) BEGIN
1532
+ -----------------------------
1533
+ MarticleParserTest: test_file
1534
+ -----------------------------
1535
+  (0.1ms) ROLLBACK
1536
+  (0.1ms) BEGIN
1537
+ ----------------------------------------------------------------------
1538
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1539
+ ----------------------------------------------------------------------
1540
+  (0.1ms) ROLLBACK
1541
+  (0.1ms) BEGIN
1542
+ -----------------------------
1543
+ MarticleParserTest: test_file
1544
+ -----------------------------
1545
+  (0.1ms) ROLLBACK
1546
+  (0.1ms) BEGIN
1547
+ ----------------------------------------------------------------------
1548
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1549
+ ----------------------------------------------------------------------
1550
+  (0.1ms) ROLLBACK
1551
+  (0.3ms) BEGIN
1552
+ -----------------------------
1553
+ MarticleParserTest: test_file
1554
+ -----------------------------
1555
+  (0.1ms) ROLLBACK
1556
+  (0.1ms) BEGIN
1557
+ ----------------------------------------------------------------------
1558
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1559
+ ----------------------------------------------------------------------
1560
+  (0.1ms) ROLLBACK
1561
+  (0.1ms) BEGIN
1562
+ -----------------------------
1563
+ MarticleParserTest: test_file
1564
+ -----------------------------
1565
+  (0.1ms) ROLLBACK
1566
+  (0.1ms) BEGIN
1567
+ ----------------------------------------------------------------------
1568
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1569
+ ----------------------------------------------------------------------
1570
+  (0.1ms) ROLLBACK
1571
+  (0.3ms) BEGIN
1572
+ -----------------------------
1573
+ MarticleParserTest: test_file
1574
+ -----------------------------
1575
+  (0.2ms) ROLLBACK
1576
+  (0.1ms) BEGIN
1577
+ ----------------------------------------------------------------------
1578
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1579
+ ----------------------------------------------------------------------
1580
+  (0.2ms) ROLLBACK
1581
+  (0.1ms) BEGIN
1582
+ ---------------------------------------------------------
1583
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1584
+ ---------------------------------------------------------
1585
+  (0.1ms) ROLLBACK
1586
+  (0.1ms) BEGIN
1587
+ -----------------------------
1588
+ MarticleParserTest: test_file
1589
+ -----------------------------
1590
+  (0.1ms) ROLLBACK
1591
+  (0.1ms) BEGIN
1592
+ ----------------------------------------------------------------------
1593
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1594
+ ----------------------------------------------------------------------
1595
+  (0.1ms) ROLLBACK
1596
+  (0.1ms) BEGIN
1597
+ ----------------------------------------------------------------
1598
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1599
+ ----------------------------------------------------------------
1600
+  (0.1ms) ROLLBACK
1601
+  (0.2ms) BEGIN
1602
+ ---------------------------------------------------------
1603
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1604
+ ---------------------------------------------------------
1605
+  (0.1ms) ROLLBACK
1606
+  (0.1ms) BEGIN
1607
+ -----------------------------
1608
+ MarticleParserTest: test_file
1609
+ -----------------------------
1610
+  (0.1ms) ROLLBACK
1611
+  (0.1ms) BEGIN
1612
+ ----------------------------------------------------------------------
1613
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1614
+ ----------------------------------------------------------------------
1615
+  (0.1ms) ROLLBACK
1616
+  (0.1ms) BEGIN
1617
+ ----------------------------------------------------------------
1618
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1619
+ ----------------------------------------------------------------
1620
+  (0.1ms) ROLLBACK
1621
+  (0.1ms) BEGIN
1622
+ ---------------------------------------------------------
1623
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1624
+ ---------------------------------------------------------
1625
+  (0.1ms) ROLLBACK
1626
+  (0.1ms) BEGIN
1627
+ -----------------------------
1628
+ MarticleParserTest: test_file
1629
+ -----------------------------
1630
+  (0.1ms) ROLLBACK
1631
+  (0.1ms) BEGIN
1632
+ -------------------------------------------------------------
1633
+ MarticleParserTest: test_will_correctly_handle_bookean_values
1634
+ -------------------------------------------------------------
1635
+  (0.1ms) ROLLBACK
1636
+  (0.1ms) BEGIN
1637
+ ----------------------------------------------------------------------
1638
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1639
+ ----------------------------------------------------------------------
1640
+  (0.1ms) ROLLBACK
1641
+  (0.1ms) BEGIN
1642
+ ----------------------------------------------------------------
1643
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1644
+ ----------------------------------------------------------------
1645
+  (0.1ms) ROLLBACK
1646
+  (0.1ms) BEGIN
1647
+ ---------------------------------------------------------
1648
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1649
+ ---------------------------------------------------------
1650
+  (0.1ms) ROLLBACK
1651
+  (0.1ms) BEGIN
1652
+ -----------------------------
1653
+ MarticleParserTest: test_file
1654
+ -----------------------------
1655
+  (0.1ms) ROLLBACK
1656
+  (0.1ms) BEGIN
1657
+ -------------------------------------------------------------
1658
+ MarticleParserTest: test_will_correctly_handle_bookean_values
1659
+ -------------------------------------------------------------
1660
+  (0.1ms) ROLLBACK
1661
+  (0.1ms) BEGIN
1662
+ ----------------------------------------------------------------------
1663
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1664
+ ----------------------------------------------------------------------
1665
+  (0.1ms) ROLLBACK
1666
+  (0.1ms) BEGIN
1667
+ ----------------------------------------------------------------
1668
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1669
+ ----------------------------------------------------------------
1670
+  (0.1ms) ROLLBACK
1671
+  (0.1ms) BEGIN
1672
+ ---------------------------------------------------------
1673
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1674
+ ---------------------------------------------------------
1675
+  (0.1ms) ROLLBACK
1676
+  (0.1ms) BEGIN
1677
+ -----------------------------
1678
+ MarticleParserTest: test_file
1679
+ -----------------------------
1680
+  (0.1ms) ROLLBACK
1681
+  (0.1ms) BEGIN
1682
+ -------------------------------------------------------------
1683
+ MarticleParserTest: test_will_correctly_handle_bookean_values
1684
+ -------------------------------------------------------------
1685
+  (0.1ms) ROLLBACK
1686
+  (0.1ms) BEGIN
1687
+ ----------------------------------------------------------------------
1688
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1689
+ ----------------------------------------------------------------------
1690
+  (0.1ms) ROLLBACK
1691
+  (0.1ms) BEGIN
1692
+ ----------------------------------------------------------------
1693
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1694
+ ----------------------------------------------------------------
1695
+  (0.1ms) ROLLBACK
1696
+  (0.1ms) BEGIN
1697
+ ---------------------------------------------------------
1698
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1699
+ ---------------------------------------------------------
1700
+  (0.1ms) ROLLBACK
1701
+  (0.1ms) BEGIN
1702
+ -----------------------------
1703
+ MarticleParserTest: test_file
1704
+ -----------------------------
1705
+  (0.1ms) ROLLBACK
1706
+  (0.1ms) BEGIN
1707
+ -------------------------------------------------------------
1708
+ MarticleParserTest: test_will_correctly_handle_bookean_values
1709
+ -------------------------------------------------------------
1710
+  (0.1ms) ROLLBACK
1711
+  (0.1ms) BEGIN
1712
+ ----------------------------------------------------------------------
1713
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1714
+ ----------------------------------------------------------------------
1715
+  (0.1ms) ROLLBACK
1716
+  (0.1ms) BEGIN
1717
+ ----------------------------------------------------------------
1718
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1719
+ ----------------------------------------------------------------
1720
+  (0.1ms) ROLLBACK
1721
+  (0.2ms) BEGIN
1722
+ ---------------------------------------------------------
1723
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1724
+ ---------------------------------------------------------
1725
+  (0.2ms) ROLLBACK
1726
+  (0.1ms) BEGIN
1727
+ -----------------------------
1728
+ MarticleParserTest: test_file
1729
+ -----------------------------
1730
+  (0.1ms) ROLLBACK
1731
+  (0.1ms) BEGIN
1732
+ -------------------------------------------------------------
1733
+ MarticleParserTest: test_will_correctly_handle_bookean_values
1734
+ -------------------------------------------------------------
1735
+  (0.1ms) ROLLBACK
1736
+  (0.1ms) BEGIN
1737
+ ----------------------------------------------------------------------
1738
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1739
+ ----------------------------------------------------------------------
1740
+  (0.1ms) ROLLBACK
1741
+  (0.1ms) BEGIN
1742
+ ----------------------------------------------------------------
1743
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1744
+ ----------------------------------------------------------------
1745
+  (0.1ms) ROLLBACK
1746
+  (0.3ms) BEGIN
1747
+ ---------------------------------------------------------
1748
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1749
+ ---------------------------------------------------------
1750
+  (0.1ms) ROLLBACK
1751
+  (0.1ms) BEGIN
1752
+ -----------------------------
1753
+ MarticleParserTest: test_file
1754
+ -----------------------------
1755
+  (0.1ms) ROLLBACK
1756
+  (0.1ms) BEGIN
1757
+ -------------------------------------------------------------
1758
+ MarticleParserTest: test_will_correctly_handle_bookean_values
1759
+ -------------------------------------------------------------
1760
+  (0.1ms) ROLLBACK
1761
+  (0.1ms) BEGIN
1762
+ ----------------------------------------------------------------------
1763
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1764
+ ----------------------------------------------------------------------
1765
+  (0.1ms) ROLLBACK
1766
+  (0.1ms) BEGIN
1767
+ ------------------------------------------------------------------
1768
+ MarticleParserTest: test_will_use_file_time_if_no_updated_at_given
1769
+ ------------------------------------------------------------------
1770
+  (0.1ms) ROLLBACK
1771
+  (0.1ms) BEGIN
1772
+ ----------------------------------------------------------------
1773
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1774
+ ----------------------------------------------------------------
1775
+  (0.1ms) ROLLBACK
1776
+  (0.3ms) BEGIN
1777
+ -----------------------------------------------------------------
1778
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
1779
+ -----------------------------------------------------------------
1780
+  (0.1ms) ROLLBACK
1781
+  (0.1ms) BEGIN
1782
+ ------------------------------
1783
+ MarticleBuilderTest: test_path
1784
+ ------------------------------
1785
+  (0.1ms) ROLLBACK
1786
+  (0.3ms) BEGIN
1787
+ -----------------------------------------------------------------
1788
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
1789
+ -----------------------------------------------------------------
1790
+  (0.2ms) ROLLBACK
1791
+  (0.1ms) BEGIN
1792
+ ------------------------------
1793
+ MarticleBuilderTest: test_path
1794
+ ------------------------------
1795
+  (0.1ms) ROLLBACK
1796
+  (0.1ms) BEGIN
1797
+ -----------------------------------------------------------------
1798
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
1799
+ -----------------------------------------------------------------
1800
+  (0.2ms) ROLLBACK
1801
+  (0.2ms) BEGIN
1802
+ -----------------------------------------------------------------
1803
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
1804
+ -----------------------------------------------------------------
1805
+  (0.1ms) ROLLBACK
1806
+  (0.1ms) BEGIN
1807
+ ----------------------------------------------------------------------------
1808
+ MarticleBuilderTest: test_it_should_rais_an_error_if_the_file_does_not_exist
1809
+ ----------------------------------------------------------------------------
1810
+  (0.2ms) ROLLBACK
1811
+  (0.1ms) BEGIN
1812
+ -----------------------------------------------------------------
1813
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
1814
+ -----------------------------------------------------------------
1815
+  (0.1ms) ROLLBACK
1816
+  (0.1ms) BEGIN
1817
+ ----------------------------------------------------------------------------
1818
+ MarticleBuilderTest: test_it_should_rais_an_error_if_the_file_does_not_exist
1819
+ ----------------------------------------------------------------------------
1820
+  (0.1ms) ROLLBACK
1821
+  (0.1ms) BEGIN
1822
+ ----------------------------------------------------------------
1823
+ MarticleBuilderTest: test_it_should_set_the_path_of_the_marticle
1824
+ ----------------------------------------------------------------
1825
+  (0.1ms) ROLLBACK
1826
+  (0.2ms) BEGIN
1827
+ -------------------------------------------------------------------------
1828
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1829
+ -------------------------------------------------------------------------
1830
+  (0.1ms) ROLLBACK
1831
+  (0.1ms) BEGIN
1832
+ -----------------------------------------------------------------
1833
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
1834
+ -----------------------------------------------------------------
1835
+  (0.1ms) ROLLBACK
1836
+  (0.1ms) BEGIN
1837
+ ----------------------------------------------------------------------------
1838
+ MarticleBuilderTest: test_it_should_rais_an_error_if_the_file_does_not_exist
1839
+ ----------------------------------------------------------------------------
1840
+  (0.1ms) ROLLBACK
1841
+  (0.1ms) BEGIN
1842
+ ----------------------------------------------------------------
1843
+ MarticleBuilderTest: test_it_should_set_the_path_of_the_marticle
1844
+ ----------------------------------------------------------------
1845
+  (0.1ms) ROLLBACK
1846
+  (0.1ms) BEGIN
1847
+ ---------------------------------------------------------
1848
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1849
+ ---------------------------------------------------------
1850
+  (0.1ms) ROLLBACK
1851
+  (0.1ms) BEGIN
1852
+ -----------------------------
1853
+ MarticleParserTest: test_file
1854
+ -----------------------------
1855
+  (0.1ms) ROLLBACK
1856
+  (0.1ms) BEGIN
1857
+ -------------------------------------------------------------
1858
+ MarticleParserTest: test_will_correctly_handle_boolean_values
1859
+ -------------------------------------------------------------
1860
+  (0.1ms) ROLLBACK
1861
+  (0.1ms) BEGIN
1862
+ ----------------------------------------------------------------------
1863
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1864
+ ----------------------------------------------------------------------
1865
+  (0.1ms) ROLLBACK
1866
+  (0.1ms) BEGIN
1867
+ ------------------------------------------------------------------
1868
+ MarticleParserTest: test_will_use_file_time_if_no_updated_at_given
1869
+ ------------------------------------------------------------------
1870
+  (0.1ms) ROLLBACK
1871
+  (0.1ms) BEGIN
1872
+ ----------------------------------------------------------------
1873
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1874
+ ----------------------------------------------------------------
1875
+  (0.1ms) ROLLBACK
1876
+  (0.1ms) BEGIN
1877
+ ------------------------------------------------
1878
+ MartiTest: test_can_set_and_get_a_config_setting
1879
+ ------------------------------------------------
1880
+  (0.1ms) ROLLBACK
1881
+  (0.1ms) BEGIN
1882
+ ---------------------------------------------------------
1883
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1884
+ ---------------------------------------------------------
1885
+  (0.1ms) ROLLBACK
1886
+  (0.1ms) BEGIN
1887
+ -----------------------------
1888
+ MarticleParserTest: test_file
1889
+ -----------------------------
1890
+  (0.1ms) ROLLBACK
1891
+  (0.1ms) BEGIN
1892
+ -------------------------------------------------------------
1893
+ MarticleParserTest: test_will_correctly_handle_boolean_values
1894
+ -------------------------------------------------------------
1895
+  (0.1ms) ROLLBACK
1896
+  (0.1ms) BEGIN
1897
+ ----------------------------------------------------------------------
1898
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1899
+ ----------------------------------------------------------------------
1900
+  (0.1ms) ROLLBACK
1901
+  (0.1ms) BEGIN
1902
+ ------------------------------------------------------------------
1903
+ MarticleParserTest: test_will_use_file_time_if_no_updated_at_given
1904
+ ------------------------------------------------------------------
1905
+  (0.2ms) ROLLBACK
1906
+  (0.1ms) BEGIN
1907
+ ----------------------------------------------------------------
1908
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1909
+ ----------------------------------------------------------------
1910
+  (0.1ms) ROLLBACK
1911
+  (0.0ms) BEGIN
1912
+ ------------------------------------------------
1913
+ MartiTest: test_can_set_and_get_a_config_setting
1914
+ ------------------------------------------------
1915
+  (0.1ms) ROLLBACK
1916
+  (0.1ms) BEGIN
1917
+ ------------------------------------------------
1918
+ MartiTest: test_raise_an_error_if_not_configured
1919
+ ------------------------------------------------
1920
+  (0.1ms) ROLLBACK
1921
+  (0.0ms) BEGIN
1922
+ -------------------------------------------------------------------------
1923
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
1924
+ -------------------------------------------------------------------------
1925
+  (0.1ms) ROLLBACK
1926
+  (0.1ms) BEGIN
1927
+ -----------------------------------------------------------------
1928
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
1929
+ -----------------------------------------------------------------
1930
+  (0.1ms) ROLLBACK
1931
+  (0.1ms) BEGIN
1932
+ -----------------------------------------------------------------------------
1933
+ MarticleBuilderTest: test_it_should_raise_an_error_if_the_file_does_not_exist
1934
+ -----------------------------------------------------------------------------
1935
+  (0.1ms) ROLLBACK
1936
+  (0.1ms) BEGIN
1937
+ ----------------------------------------------------------------
1938
+ MarticleBuilderTest: test_it_should_set_the_path_of_the_marticle
1939
+ ----------------------------------------------------------------
1940
+  (0.1ms) ROLLBACK
1941
+  (0.1ms) BEGIN
1942
+ ---------------------------------------------------------
1943
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1944
+ ---------------------------------------------------------
1945
+  (0.1ms) ROLLBACK
1946
+  (0.1ms) BEGIN
1947
+ -----------------------------
1948
+ MarticleParserTest: test_file
1949
+ -----------------------------
1950
+  (0.1ms) ROLLBACK
1951
+  (0.1ms) BEGIN
1952
+ -------------------------------------------------------------
1953
+ MarticleParserTest: test_will_correctly_handle_boolean_values
1954
+ -------------------------------------------------------------
1955
+  (0.1ms) ROLLBACK
1956
+  (0.1ms) BEGIN
1957
+ ----------------------------------------------------------------------
1958
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1959
+ ----------------------------------------------------------------------
1960
+  (0.1ms) ROLLBACK
1961
+  (0.1ms) BEGIN
1962
+ ------------------------------------------------------------------
1963
+ MarticleParserTest: test_will_use_file_time_if_no_updated_at_given
1964
+ ------------------------------------------------------------------
1965
+  (0.1ms) ROLLBACK
1966
+  (0.1ms) BEGIN
1967
+ ----------------------------------------------------------------
1968
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1969
+ ----------------------------------------------------------------
1970
+  (0.1ms) ROLLBACK
1971
+  (0.2ms) BEGIN
1972
+ ---------------------------------------------------------
1973
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
1974
+ ---------------------------------------------------------
1975
+  (0.1ms) ROLLBACK
1976
+  (0.1ms) BEGIN
1977
+ -----------------------------
1978
+ MarticleParserTest: test_file
1979
+ -----------------------------
1980
+  (0.1ms) ROLLBACK
1981
+  (0.1ms) BEGIN
1982
+ -------------------------------------------------------------
1983
+ MarticleParserTest: test_will_correctly_handle_boolean_values
1984
+ -------------------------------------------------------------
1985
+  (0.1ms) ROLLBACK
1986
+  (0.1ms) BEGIN
1987
+ ----------------------------------------------------------------------
1988
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
1989
+ ----------------------------------------------------------------------
1990
+  (0.1ms) ROLLBACK
1991
+  (0.1ms) BEGIN
1992
+ ------------------------------------------------------------------
1993
+ MarticleParserTest: test_will_use_file_time_if_no_updated_at_given
1994
+ ------------------------------------------------------------------
1995
+  (0.1ms) ROLLBACK
1996
+  (0.1ms) BEGIN
1997
+ ----------------------------------------------------------------
1998
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
1999
+ ----------------------------------------------------------------
2000
+  (0.1ms) ROLLBACK
2001
+  (0.2ms) BEGIN
2002
+ ---------------------------------------------------------
2003
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
2004
+ ---------------------------------------------------------
2005
+  (0.1ms) ROLLBACK
2006
+  (0.1ms) BEGIN
2007
+ -----------------------------
2008
+ MarticleParserTest: test_file
2009
+ -----------------------------
2010
+  (0.1ms) ROLLBACK
2011
+  (0.1ms) BEGIN
2012
+ -------------------------------------------------------------
2013
+ MarticleParserTest: test_will_correctly_handle_boolean_values
2014
+ -------------------------------------------------------------
2015
+  (0.1ms) ROLLBACK
2016
+  (0.2ms) BEGIN
2017
+ ----------------------------------------------------------------------
2018
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
2019
+ ----------------------------------------------------------------------
2020
+  (0.1ms) ROLLBACK
2021
+  (0.1ms) BEGIN
2022
+ ------------------------------------------------------------------
2023
+ MarticleParserTest: test_will_use_file_time_if_no_updated_at_given
2024
+ ------------------------------------------------------------------
2025
+  (0.1ms) ROLLBACK
2026
+  (0.1ms) BEGIN
2027
+ ----------------------------------------------------------------
2028
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
2029
+ ----------------------------------------------------------------
2030
+  (0.1ms) ROLLBACK
2031
+  (0.1ms) BEGIN
2032
+ ------------------------------------------------
2033
+ MartiTest: test_can_set_and_get_a_config_setting
2034
+ ------------------------------------------------
2035
+  (0.1ms) ROLLBACK
2036
+  (0.1ms) BEGIN
2037
+ ------------------------------------------------
2038
+ MartiTest: test_raise_an_error_if_not_configured
2039
+ ------------------------------------------------
2040
+  (0.1ms) ROLLBACK
2041
+  (0.1ms) BEGIN
2042
+ -----------------------------------------------------------------
2043
+ MarticleBuilderTest: test_it_should_build_an_article_given_a_path
2044
+ -----------------------------------------------------------------
2045
+  (0.1ms) ROLLBACK
2046
+  (0.1ms) BEGIN
2047
+ -----------------------------------------------------------------------------
2048
+ MarticleBuilderTest: test_it_should_raise_an_error_if_the_file_does_not_exist
2049
+ -----------------------------------------------------------------------------
2050
+  (0.1ms) ROLLBACK
2051
+  (0.1ms) BEGIN
2052
+ ----------------------------------------------------------------
2053
+ MarticleBuilderTest: test_it_should_set_the_path_of_the_marticle
2054
+ ----------------------------------------------------------------
2055
+  (0.1ms) ROLLBACK
2056
+  (0.0ms) BEGIN
2057
+ ---------------------------------------------------------
2058
+ MarticleParserTest: test_can_deal_with_a_given_updated_at
2059
+ ---------------------------------------------------------
2060
+  (0.1ms) ROLLBACK
2061
+  (0.1ms) BEGIN
2062
+ -----------------------------
2063
+ MarticleParserTest: test_file
2064
+ -----------------------------
2065
+  (0.1ms) ROLLBACK
2066
+  (0.1ms) BEGIN
2067
+ -------------------------------------------------------------
2068
+ MarticleParserTest: test_will_correctly_handle_boolean_values
2069
+ -------------------------------------------------------------
2070
+  (0.1ms) ROLLBACK
2071
+  (0.1ms) BEGIN
2072
+ ----------------------------------------------------------------------
2073
+ MarticleParserTest: test_will_get_the_correct_extract_with_a_given_cut
2074
+ ----------------------------------------------------------------------
2075
+  (0.1ms) ROLLBACK
2076
+  (0.1ms) BEGIN
2077
+ ------------------------------------------------------------------
2078
+ MarticleParserTest: test_will_use_file_time_if_no_updated_at_given
2079
+ ------------------------------------------------------------------
2080
+  (0.1ms) ROLLBACK
2081
+  (0.1ms) BEGIN
2082
+ ----------------------------------------------------------------
2083
+ MarticleParserTest: test_will_work_with_any_given_key_value_pair
2084
+ ----------------------------------------------------------------
2085
+  (0.1ms) ROLLBACK
2086
+  (0.1ms) BEGIN
2087
+ -------------------------------------------------------------------------
2088
+ MarticleTest: test_can_build_a_set_of_markdown_articles_given_a_directory
2089
+ -------------------------------------------------------------------------
2090
+  (0.1ms) ROLLBACK