# File lib/bummr/cli.rb, line 52
    def test
      check(false)

      if yes? "Do you want to test the build now?"
        system "bundle install"
        puts "Testing the build!".color(:green)

        if system(TEST_COMMAND) == false
          bisect
        else
          puts "Passed the build!".color(:green)
          puts "See log/bummr.log for details".color(:yellow)
        end
      end
    end