guard / guard-minitest

Guard::Minitest automatically run your tests (much like autotest)
https://rubygems.org/gems/guard-minitest
MIT License
249 stars 88 forks source link

failing or errored tests starts to placing me at the Guard prompt?! #63

Closed ep-wac closed 11 years ago

ep-wac commented 11 years ago

I've used guard for quite some time now and only recently I've all of a sudden start getting put at the Guard prompt? The output is like this:

    0002 should be able to tell the amount of work clocked                FAIL
        <525> expected but was
        <0>.

        STDOUT:
        "PAIRS:   [\"monday thru thursday at 7 - 15:45\", \" \", \"in\", \"2013\"]"
        {:loaded=>false, :parses=>false, :must_have_from_at=>false, :years=>[2013], :qtrs=>[], :months=>[], :mweeks=>[], :weeks=>[], :wdays=>[], :days=>[], :durations=>[], :pits=>[], :every=>[], :every_step=>[], :start=>nil, :stop=>nil, :start_seconds=>nil, :stop_seconds=>nil, :default_range=>:year}
        {:loaded=>false, :parses=>false, :must_have_from_at=>false, :years=>[2013], :qtrs=>[], :months=>[], :mweeks=>[], :weeks=>[], :wdays=>[1, 2, 3, 4], :days=>[], :durations=>[], :pits=>[], :every=>[], :every_step=>[], :start=>"07:00", :stop=>"15:45", :start_seconds=>nil, :stop_seconds=>nil, :default_range=>:year}

  [c,i,q,r,t,#,?] 

I really could do without the [c,i,q,r,t,#,?] prompt kind of thing - but I'll be darn if I can find the setting, how to disable it :(

If I could have one push me in the right direction, I'd really appreciate it

cheers E

My Guardfile has the standard stuff and a few env initializations - like


# A sample Guardfile
# More info at https://github.com/guard/guard#readme
interactor :off

guard 'spork', wait: 60, cucumber: false, test_unit: false, minitest: true, :minitest_env => { 'RAILS_ENV' => 'test', 'OX_ID' => '1', 'ROOT_PATH' => 'dashboards#show'  } do
  watch('config/application.rb')
  watch('config/environment.rb')
  watch('config/environments/test.rb')
  watch(%r{^config/initializers/.+\.rb$})
  watch('Gemfile')
  watch('Gemfile.lock')
  watch('test/test_helper.rb') { :minitest }
  watch(%r{features/support/}) { :cucumber }
  watch('test/factories.rb') { :minitest }
end

guard 'sporkminitest', :minitest_env => { 'RAILS_ENV' => 'test', 'OX_ID' => '1', 'ROOT_PATH' => 'dashboards#show'  } do
  # with Minitest::Unit
  watch(%r|^test/(.*)\/?test_(.*)\.rb|)
  watch(%r|^test/(.*)\/(.*)\.rb|)
  watch(%r|^lib/(.*)([^/]+)\.rb|)     { |m| "test/#{m[1]}test_#{m[2]}.rb" }
  watch(%r|^test/minitest_helper\.rb|)    { "test" }

  # with Minitest::Spec
  # watch(%r|^spec/(.*)_spec\.rb|)
  # watch(%r|^lib/(.*)([^/]+)\.rb|)     { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
  # watch(%r|^spec/spec_helper\.rb|)    { "spec" }

  # Rails 3.2
  watch(%r|^app/controllers/(.*)\.rb|) { |m| "test/controllers/#{m[1]}_test.rb" }
  watch(%r|^app/helpers/(.*)\.rb|)     { |m| "test/helpers/#{m[1]}_test.rb" }
  watch(%r|^app/models/(.*)\.rb|)      { |m| "test/models/#{m[1]}_test.rb" }  
  watch(%r|^lib/models/(.*)_(.*)\.rb|)      { |m| "test/models/#{m[1]}_test.rb" }  
end

and finally my Gemfile.lock holds

GIT
  remote: git://github.com/railsware/smt_rails.git
  revision: acb857a9166c9a41a9512c38a0b72955546d6c2e
  specs:
    smt_rails (0.2.6)
      mustache (>= 0.99.4)
      rails (>= 3.1.0)
      sprockets (>= 2.0.3)
      tilt (>= 1.3.3)

GIT
  remote: git://github.com/ryanb/nested_form.git
  revision: a25eebe8205e4e63899873b716535def6c1f5a9d
  specs:
    nested_form (0.3.2)

GIT
  remote: git@github.com:ep-wac/nordea.git
  revision: f722985a4c201234069b51281264c2e9633164b1
  specs:
    nordea (1.1.0)
      money
      tzinfo (~> 0.3.28)

GIT
  remote: https://github.com/RubyMoney/money.git
  revision: 5030b58cb721f7e56dfc431018a9f4ce05b2bd74
  specs:
    money (5.1.1)
      i18n (~> 0.6.0)

GIT
  remote: https://github.com/banister/binding_of_caller.git
  revision: 3fe01254c6a8cdfb64b7e128cb428981cd4c7d7b
  specs:
    binding_of_caller (0.7.1)
      debug_inspector (>= 0.0.1)

GEM
  remote: http://rubygems.org/
  specs:
    actionmailer (3.2.8)
      actionpack (= 3.2.8)
      mail (~> 2.4.4)
    actionpack (3.2.8)
      activemodel (= 3.2.8)
      activesupport (= 3.2.8)
      builder (~> 3.0.0)
      erubis (~> 2.7.0)
      journey (~> 1.0.4)
      rack (~> 1.4.0)
      rack-cache (~> 1.2)
      rack-test (~> 0.6.1)
      sprockets (~> 2.1.3)
    activemodel (3.2.8)
      activesupport (= 3.2.8)
      builder (~> 3.0.0)
    activerecord (3.2.8)
      activemodel (= 3.2.8)
      activesupport (= 3.2.8)
      arel (~> 3.0.2)
      tzinfo (~> 0.3.29)
    activeresource (3.2.8)
      activemodel (= 3.2.8)
      activesupport (= 3.2.8)
    activesupport (3.2.8)
      i18n (~> 0.6)
      multi_json (~> 1.0)
    ancestry (1.3.0)
      activerecord (>= 2.3.14)
    ansi (1.4.3)
    arel (3.0.2)
    awesome_print (1.1.0)
    backports (3.3.0)
    bcrypt-ruby (3.0.1)
    better_errors (0.8.0)
      coderay (>= 1.0.0)
      erubis (>= 2.6.6)
    browser_details (0.0.4)
      useragent (>= 0.4)
    builder (3.0.4)
    bullet (4.6.0)
      uniform_notifier
    capybara (2.1.0)
      mime-types (>= 1.16)
      nokogiri (>= 1.3.3)
      rack (>= 1.0.0)
      rack-test (>= 0.5.4)
      xpath (~> 2.0)
    carrierwave (0.8.0)
      activemodel (>= 3.2.0)
      activesupport (>= 3.2.0)
    carrierwave_backgrounder (0.2.1)
      carrierwave (~> 0.5)
    childprocess (0.3.9)
      ffi (~> 1.0, >= 1.0.11)
    choice (0.1.6)
    chosen-rails (0.9.13)
      coffee-rails (>= 3.2)
      railties (>= 3.0)
      sass-rails (>= 3.2)
    chronic (0.9.1)
    clear_eyes (0.1.6)
      railties (~> 3.1)
      rmagick (~> 2.13.1)
    code_analyzer (0.3.1)
      sexp_processor
    coderay (1.0.9)
    coffee-filter (0.1.3)
      coffee-script (>= 2.2.0)
      haml (< 4.0)
    coffee-rails (3.2.2)
      coffee-script (>= 2.2.0)
      railties (~> 3.2.0)
    coffee-script (2.2.0)
      coffee-script-source
      execjs
    coffee-script-source (1.6.2)
    colored (1.2)
    commonjs (0.2.6)
    daemons (1.1.9)
    database_cleaner (0.9.1)
    debug_inspector (0.0.2)
    delayed_job (3.0.5)
      activesupport (~> 3.0)
    delayed_job_active_record (0.4.4)
      activerecord (>= 2.1.0, < 4)
      delayed_job (~> 3.0)
    devise (2.2.3)
      bcrypt-ruby (~> 3.0)
      orm_adapter (~> 0.1)
      railties (~> 3.1)
      warden (~> 1.2.1)
    erubis (2.7.0)
    eventmachine (1.0.3)
    execjs (1.4.0)
      multi_json (~> 1.0)
    factory_girl (4.2.0)
      activesupport (>= 3.0.0)
    factory_girl_rails (4.2.1)
      factory_girl (~> 4.2.0)
      railties (>= 3.0.0)
    faye-websocket (0.4.7)
      eventmachine (>= 0.12.0)
    ffi (1.8.1)
    formatador (0.2.4)
    friendly_id (4.0.9)
    geokit (1.6.5)
      multi_json
    geokit-rails3 (0.1.5)
      geokit (~> 1.5)
      rails (~> 3.0)
    guard (1.8.0)
      formatador (>= 0.2.4)
      listen (>= 1.0.0)
      lumberjack (>= 1.0.2)
      pry (>= 0.9.10)
      thor (>= 0.14.6)
    guard-spork (1.5.0)
      childprocess (>= 0.2.3)
      guard (>= 1.1)
      spork (>= 0.8.4)
    guard-sporkminitest (0.0.2)
      guard
      guard-spork
      rb-fsevent
      rb-inotify
      spork-minitest
    haml (3.1.8)
    has_scope (0.5.1)
    hike (1.2.2)
    hirb (0.7.1)
    home_run (1.0.9)
    http_parser.rb (0.5.3)
    i18n (0.6.4)
    inherited_resources (1.4.0)
      has_scope (~> 0.5.0)
      responders (~> 0.9)
    interactive_editor (0.0.10)
      spoon (>= 0.0.1)
    interception (0.3)
    journey (1.0.4)
    jquery-rails (2.2.1)
      railties (>= 3.0, < 5.0)
      thor (>= 0.14, < 2.0)
    jquery-ui-rails (4.0.2)
      jquery-rails
      railties (>= 3.1.0)
    json (1.7.7)
    kaminari (0.14.1)
      actionpack (>= 3.0.0)
      activesupport (>= 3.0.0)
    less (2.3.2)
      commonjs (~> 0.2.6)
    less-rails (2.3.3)
      actionpack (>= 3.1)
      less (~> 2.3.1)
    libv8 (3.11.8.17)
    liquid (2.5.0)
    liquify (0.2.7)
      liquid (>= 2.2.2)
    listen (1.1.5)
      rb-fsevent (>= 0.9.3)
      rb-inotify (>= 0.9)
      rb-kqueue (>= 0.2)
    lumberjack (1.0.3)
    mail (2.4.4)
      i18n (>= 0.4.0)
      mime-types (~> 1.16)
      treetop (~> 1.4.8)
    meta-tags (1.4.1)
      actionpack
    meta_request (0.2.1)
      rack-contrib
      rails
    method_source (0.8.1)
    mime-types (1.17.2)
    mini_magick (3.5.0)
      subexec (~> 0.2.1)
    minitest (4.7.3)
    minitest-capybara (0.1.0)
      capybara (>= 1.0)
      minitest-matchers (>= 1.2)
    minitest-matchers (1.3.0)
      minitest (~> 4.7)
    minitest-metadata (0.4.0)
      minitest (~> 4.7)
    minitest-rails (0.9.2)
      minitest (~> 4.7)
      rails (>= 3.0)
    minitest-rails-capybara (0.9.0)
      capybara (~> 2.0)
      minitest-capybara (~> 0.1)
      minitest-matchers (~> 1.2)
      minitest-metadata (~> 0.3)
      minitest-rails (~> 0.9.1)
    minitest-spec-rails (4.7.3)
      minitest (~> 4.7)
      rails (>= 3.0)
    money-rails (0.8.1)
      activesupport (>= 3.0)
      money (~> 5.1.0)
      railties (>= 3.0)
    multi_json (1.7.2)
    mustache (0.99.4)
    mysql2 (0.3.11)
    net-dns (0.7.1)
    nokogiri (1.5.9)
    open4 (1.3.0)
    orm_adapter (0.4.0)
    paper_trail (2.7.1)
      activerecord (~> 3.0)
      railties (~> 3.0)
    poltergeist (1.2.0)
      capybara (~> 2.1.0)
      faye-websocket (~> 0.4, >= 0.4.4)
      http_parser.rb (~> 0.5.3)
    polyamorous (0.5.0)
      activerecord (~> 3.0)
    polyglot (0.3.3)
    pry (0.9.12.2)
      coderay (~> 1.0.5)
      method_source (~> 0.8)
      slop (~> 3.4)
    pry-exception_explorer (0.2.3)
      pry-stack_explorer (>= 0.4.6)
    pry-nav (0.2.3)
      pry (~> 0.9.10)
    pry-rails (0.2.2)
      pry (>= 0.9.10)
    pry-rescue (1.1.1)
      interception (>= 0.3)
      pry
    pry-stack_explorer (0.4.9)
      binding_of_caller (>= 0.7)
      pry (~> 0.9.11)
    rack (1.4.5)
    rack-cache (1.2)
      rack (>= 0.4)
    rack-contrib (1.1.0)
      rack (>= 0.9.1)
    rack-protection (1.5.0)
      rack
    rack-recaptcha (0.6.6)
      json
    rack-ssl (1.3.3)
      rack
    rack-test (0.6.2)
      rack (>= 1.0)
    rails (3.2.8)
      actionmailer (= 3.2.8)
      actionpack (= 3.2.8)
      activerecord (= 3.2.8)
      activeresource (= 3.2.8)
      activesupport (= 3.2.8)
      bundler (~> 1.0)
      railties (= 3.2.8)
    rails-erd (1.1.0)
      activerecord (>= 3.0)
      activesupport (>= 3.0)
      choice (~> 0.1.6)
      ruby-graphviz (~> 1.0.4)
    rails_best_practices (1.13.4)
      activesupport
      awesome_print
      code_analyzer
      colored
      erubis
      i18n
      ruby-progressbar
    railties (3.2.8)
      actionpack (= 3.2.8)
      activesupport (= 3.2.8)
      rack-ssl (~> 1.3.2)
      rake (>= 0.8.7)
      rdoc (~> 3.4)
      thor (>= 0.14.6, < 2.0)
    rake (10.0.4)
    rake-remote_task (2.2.1)
      open4 (~> 1.0)
      rake (>= 0.8, < 11.0)
    ransack (0.7.2)
      actionpack (~> 3.0)
      activerecord (~> 3.0)
      polyamorous (~> 0.5.0)
    rb-fsevent (0.9.3)
    rb-inotify (0.9.0)
      ffi (>= 0.5.0)
    rb-kqueue (0.2.0)
      ffi (>= 0.5.0)
    rb-readline (0.4.2)
    rdiscount (2.0.7.2)
    rdoc (3.12.2)
      json (~> 1.4)
    ref (1.0.4)
    responders (0.9.3)
      railties (~> 3.1)
    rmagick (2.13.2)
    routing_concerns (0.1.0)
      actionpack (>= 3.2.0)
      activemodel (>= 3.2.0)
      railties (>= 3.2.0)
    ruby-graphviz (1.0.9)
    ruby-progressbar (1.0.2)
    sass (3.1.21)
    sass-rails (3.2.6)
      railties (~> 3.2.0)
      sass (>= 3.1.10)
      tilt (~> 1.3)
    sexp_processor (4.2.1)
    simple_enum (1.6.4)
      activesupport (>= 3.0.0)
    sinatra (1.3.6)
      rack (~> 1.4)
      rack-protection (~> 1.3)
      tilt (~> 1.3, >= 1.3.3)
    sinatra-contrib (1.3.2)
      backports (>= 2.0)
      eventmachine
      rack-protection
      rack-test
      sinatra (~> 1.3.0)
      tilt (~> 1.3)
    sinatra-reloader (1.0)
      sinatra-contrib
    slim (1.3.8)
      temple (~> 0.6.3)
      tilt (~> 1.3.3)
    slop (3.4.5)
    spoon (0.0.3)
      ffi
    spork (0.9.2)
    spork-minitest (0.0.3)
      spork
    sprockets (2.1.3)
      hike (~> 1.2)
      rack (~> 1.0)
      tilt (~> 1.1, != 1.3.0)
    squeel (1.0.18)
      activerecord (~> 3.0)
      activesupport (~> 3.0)
      polyamorous (~> 0.5.0)
    subexec (0.2.3)
    temple (0.6.4)
    terminal-notifier-guard (1.5.3)
    themes_for_rails (0.5.1)
      rails (>= 3.0.0)
    therubyracer (0.11.4)
      libv8 (~> 3.11.8.12)
      ref
    thin (1.5.1)
      daemons (>= 1.0.9)
      eventmachine (>= 0.12.6)
      rack (>= 1.0.0)
    thor (0.18.1)
    tilt (1.3.7)
    timeliness (0.3.7)
    treetop (1.4.12)
      polyglot
      polyglot (>= 0.3.1)
    tries (0.2.1)
    turbo-sprockets-rails3 (0.2.13)
      railties (>= 3.1.0, < 3.2.9)
      sprockets (>= 2.0.0)
    turn (0.9.6)
      ansi
    twitter-bootstrap-rails (2.2.6)
      actionpack (>= 3.1)
      execjs
      railties (>= 3.1)
    tzinfo (0.3.37)
    uglifier (2.0.1)
      execjs (>= 0.3.0)
      multi_json (~> 1.0, >= 1.0.2)
    uniform_notifier (1.2.0)
    useragent (0.6.0)
    validates_timeliness (3.0.14)
      timeliness (~> 0.3.6)
    vlad (2.4.1)
      rake (>= 0.8, < 11.0)
      rake-remote_task (~> 2.1)
    vlad-git (2.2.0)
      vlad (>= 2.1.0)
    warden (1.2.1)
      rack (>= 1.0)
    whenever (0.8.2)
      activesupport (>= 2.3.4)
      chronic (>= 0.6.3)
    xpath (2.0.0)
      nokogiri (~> 1.3)
    yajl-ruby (1.1.0)

PLATFORMS
  ruby

DEPENDENCIES
  ancestry
  awesome_print
  better_errors
  binding_of_caller!
  browser_details
  bullet
  capybara
  carrierwave
  carrierwave_backgrounder
  chosen-rails
  clear_eyes
  coffee-filter
  coffee-rails
  daemons
  database_cleaner
  delayed_job
  delayed_job_active_record
  devise
  factory_girl_rails
  friendly_id
  geokit-rails3
  guard
  guard-spork
  guard-sporkminitest
  haml
  hirb
  home_run
  i18n-active_record!
  inherited_resources
  interactive_editor
  jquery-rails
  jquery-ui-rails
  kaminari
  less-rails
  libv8 (~> 3.11.8)
  liquid
  liquify
  meta-tags
  meta_request (= 0.2.1)
  mime-types (= 1.17.2)
  mini_magick
  minitest
  minitest-rails-capybara
  minitest-spec-rails
  money!
  money-rails (~> 0.8.1)
  mysql2
  nested_form!
  net-dns
  nordea!
  paper_trail (~> 2)
  poltergeist
  pry
  pry-exception_explorer
  pry-nav
  pry-rails
  pry-rescue
  pry-stack_explorer
  rack-recaptcha
  rails (= 3.2.8)
  rails-erd
  rails_best_practices
  ransack
  rb-fsevent
  rb-readline
  rdiscount
  routing_concerns
  sass (~> 3.1.0)
  sass-rails
  show_for!
  simple_enum
  simple_form!
  sinatra
  sinatra-reloader
  slim
  smt_rails!
  spork
  spork-minitest
  sprockets
  squeel
  terminal-notifier-guard
  themes_for_rails
  therubyracer
  thin
  tries
  turbo-sprockets-rails3
  turn
  twitter-bootstrap-rails
  uglifier
  validates_timeliness (~> 3.0)
  vlad
  vlad-git
  whenever
  yajl-ruby
rymai commented 11 years ago

Hi,

I don't get the issue. Please share your Gemfile.lock or tell us what's your Guard, guard-minitest and Minitest versions.

ep-wac commented 11 years ago

Hi @rymai nice of you to comment on my quails. It's either a change of convention which I've missed - or some setting, I've managed to garble (blush)

I liked the kind of testing where all tests where performed and reporting with a single line ( pass | fail | error ) but then one day I hit a particular troublesome test and being the lazy bugger, I somehow managed to scrape together a setup which would let me drop to a prompt using binding.pry

That however had me pushed sideways with this issue - showing the prompt on every fail and error.

I've edited/shared - and my versions are like this:

Appreciating your time and interest!

$ bundle list
Gems included by the bundle:
  * actionmailer (3.2.8)
  * actionpack (3.2.8)
  * activemodel (3.2.8)
  * activerecord (3.2.8)
  * activeresource (3.2.8)
  * activesupport (3.2.8)
  * ancestry (1.3.0)
  * ansi (1.4.3)
  * arel (3.0.2)
  * awesome_print (1.1.0)
  * backports (3.3.0)
  * bcrypt-ruby (3.0.1)
  * better_errors (0.8.0)
  * binding_of_caller (0.7.1 3fe0125)
  * browser_details (0.0.4)
  * builder (3.0.4)
  * bullet (4.6.0)
  * bundler (1.3.5)
  * capybara (2.1.0)
  * carrierwave (0.8.0)
  * carrierwave_backgrounder (0.2.1)
  * childprocess (0.3.9)
  * choice (0.1.6)
  * chosen-rails (0.9.13)
  * chronic (0.9.1)
  * clear_eyes (0.1.6)
  * code_analyzer (0.3.1)
  * coderay (1.0.9)
  * coffee-filter (0.1.3)
  * coffee-rails (3.2.2)
  * coffee-script (2.2.0)
  * coffee-script-source (1.6.2)
  * colored (1.2)
  * commonjs (0.2.6)
  * daemons (1.1.9)
  * database_cleaner (0.9.1)
  * debug_inspector (0.0.2)
  * delayed_job (3.0.5)
  * delayed_job_active_record (0.4.4)
  * devise (2.2.3)
  * erubis (2.7.0)
  * eventmachine (1.0.3)
  * execjs (1.4.0)
  * factory_girl (4.2.0)
  * factory_girl_rails (4.2.1)
  * faye-websocket (0.4.7)
  * ffi (1.8.1)
  * formatador (0.2.4)
  * friendly_id (4.0.9)
  * geokit (1.6.5)
  * geokit-rails3 (0.1.5)
  * guard (1.8.0)
  * guard-spork (1.5.0)
  * guard-sporkminitest (0.0.2)
  * haml (3.1.8)
  * has_scope (0.5.1)
  * hike (1.2.2)
  * hirb (0.7.1)
  * home_run (1.0.9)
  * http_parser.rb (0.5.3)
  * i18n (0.6.4)
  * inherited_resources (1.4.0)
  * interactive_editor (0.0.10)
  * interception (0.3)
  * journey (1.0.4)
  * jquery-rails (2.2.1)
  * jquery-ui-rails (4.0.2)
  * json (1.7.7)
  * kaminari (0.14.1)
  * less (2.3.2)
  * less-rails (2.3.3)
  * libv8 (3.11.8.17)
  * liquid (2.5.0)
  * liquify (0.2.7)
  * listen (1.1.5)
  * lumberjack (1.0.3)
  * mail (2.4.4)
  * meta-tags (1.4.1)
  * meta_request (0.2.1)
  * method_source (0.8.1)
  * mime-types (1.17.2)
  * mini_magick (3.5.0)
  * minitest (4.7.3)
  * minitest-capybara (0.1.0)
  * minitest-matchers (1.3.0)
  * minitest-metadata (0.4.0)
  * minitest-rails (0.9.2)
  * minitest-rails-capybara (0.9.0)
  * minitest-spec-rails (4.7.3)
  * money (5.1.1 5030b58)
  * money-rails (0.8.1)
  * multi_json (1.7.2)
  * mustache (0.99.4)
  * mysql2 (0.3.11)
  * nested_form (0.3.2 a25eebe)
  * net-dns (0.7.1)
  * nokogiri (1.5.9)
  * nordea (1.1.0 f722985)
  * open4 (1.3.0)
  * orm_adapter (0.4.0)
  * paper_trail (2.7.1)
  * poltergeist (1.2.0)
  * polyamorous (0.5.0)
  * polyglot (0.3.3)
  * pry (0.9.12.2)
  * pry-exception_explorer (0.2.3)
  * pry-nav (0.2.3)
  * pry-rails (0.2.2)
  * pry-rescue (1.1.1)
  * pry-stack_explorer (0.4.9)
  * rack (1.4.5)
  * rack-cache (1.2)
  * rack-contrib (1.1.0)
  * rack-protection (1.5.0)
  * rack-recaptcha (0.6.6)
  * rack-ssl (1.3.3)
  * rack-test (0.6.2)
  * rails (3.2.8)
  * rails-erd (1.1.0)
  * rails_best_practices (1.13.4)
  * railties (3.2.8)
  * rake (10.0.4)
  * rake-remote_task (2.2.1)
  * ransack (0.7.2)
  * rb-fsevent (0.9.3)
  * rb-inotify (0.9.0)
  * rb-kqueue (0.2.0)
  * rb-readline (0.4.2)
  * rdiscount (2.0.7.2)
  * rdoc (3.12.2)
  * ref (1.0.4)
  * responders (0.9.3)
  * rmagick (2.13.2)
  * routing_concerns (0.1.0)
  * ruby-graphviz (1.0.9)
  * ruby-progressbar (1.0.2)
  * sass (3.1.21)
  * sass-rails (3.2.6)
  * sexp_processor (4.2.1)
  * simple_enum (1.6.4)
  * sinatra (1.3.6)
  * sinatra-contrib (1.3.2)
  * sinatra-reloader (1.0)
  * slim (1.3.8)
  * slop (3.4.5)
  * smt_rails (0.2.6 acb857a)
  * spoon (0.0.3)
  * spork (0.9.2)
  * spork-minitest (0.0.3)
  * sprockets (2.1.3)
  * squeel (1.0.18)
  * subexec (0.2.3)
  * temple (0.6.4)
  * terminal-notifier-guard (1.5.3)
  * themes_for_rails (0.5.1)
  * therubyracer (0.11.4)
  * thin (1.5.1)
  * thor (0.18.1)
  * tilt (1.3.7)
  * timeliness (0.3.7)
  * treetop (1.4.12)
  * tries (0.2.1)
  * turbo-sprockets-rails3 (0.2.13)
  * turn (0.9.6)
  * twitter-bootstrap-rails (2.2.6)
  * tzinfo (0.3.37)
  * uglifier (2.0.1)
  * uniform_notifier (1.2.0)
  * useragent (0.6.0)
  * validates_timeliness (3.0.14)
  * vlad (2.4.1)
  * vlad-git (2.2.0)
  * warden (1.2.1)
  * whenever (0.8.2)
  * xpath (2.0.0)
  * yajl-ruby (1.1.0)
rymai commented 11 years ago

Thanks for the gems list, however it looks like you're not even using guard-minitest (you're using guard-sporkminitest)!

Also, regarding that:

I somehow managed to scrape together a setup which would let me drop to a prompt using binding.pry

What did you change exactly (in which file etc...)?

ep-wac commented 11 years ago

that is so true - sorry! I'll go bark up some other tree :)

I added the pry* family of gems and in so far as I remember, that was when I started seeing the prompt 'all over' - even when tests were "just" failing

I'm so sorry to have waisted your bandwidth on this issue - it clearly must belong somewhere else!

cheers E

wdiechmann commented 11 years ago

realize this is closed - but the prompt gave it away ;)

that particular prompt is a result of using Turn and it's c.format = :cue configuration option. You probably forgot all about it but it sits right there in your test/test_helper.rb ;)

ep-wac commented 11 years ago

@wdiechmann that was the best news in this week - huzzah - now I have my test 'monitor' back to what it used to be. I have to stop adding stuff I haven't got a clue about in the first place (blush)

thank you so much!

On Sat, Jun 15, 2013 at 5:06 PM, wdiechmann notifications@github.comwrote:

realize this is closed - but the prompt gave it away ;)

that particular prompt is a result of using Turnhttps://github.com/TwP/turnand it's c.format = :cue configuration option. You probably forgot all about it but it sits right there in your test/test_helper.rb ;)

— Reply to this email directly or view it on GitHubhttps://github.com/guard/guard-minitest/issues/63#issuecomment-19497831 .