# File lib/tasks/test_task.rb, line 23
      def tests(mocked)
        Formatador.display_line
        start = Time.now.to_i
        threads = []
        Thread.main[:results] = []
        Fog.providers.each do |key, value|
          threads << Thread.new do
            Thread.main[:results] << {
              :provider => value,
              :success  => sh("export FOG_MOCK=#{mocked} && bundle exec shindont +#{key}")
            }
          end
        end
        threads.each do |thread|
          thread.join
        end
        Formatador.display_table(Thread.main[:results].sort {|x,y| x[:provider] <=> y[:provider]})
        Formatador.display_line("[bold]FOG_MOCK=#{mocked}[/] tests completed in [bold]#{Time.now.to_i - start}[/] seconds")
        Formatador.display_line
      end