Sha256: f58eb78cc5279a128323e1a2b294ba4bb30b28918c33f124dbaf73efdcacbdcf

Contents?: true

Size: 1.41 KB

Versions: 55

Compression:

Stored size: 1.41 KB

Contents

=begin
Copyright 2010, Roger Pack 
This file is part of Sensible Cinema.

    Sensible Cinema is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Sensible Cinema is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Sensible Cinema.  If not, see <http://www.gnu.org/licenses/>.
=end
require File.dirname(__FILE__) + "/common"
require_relative '../lib/muter'

describe 'manual muter' do
  # functional test
  
  3.times {
    Muter.mute!
    puts 'muted'
    sleep 1
    Muter.unmute!
    puts 'unmuted'
    sleep 1
  }
  # these rest *should* be able to pass...
  
  Muter.mute!
  Muter.mute!
  puts 'silence'
  sleep 1
  Muter.unmute!
  puts 'non silence'
  sleep 1
  Muter.unmute!
  puts 'non silence'
  sleep 1
  puts 'single takes'
  p Benchmark.realtime { 1.times{Muter.hit_volume_down_key}}
  puts 'triple takes'
  p Benchmark.realtime { 1.times{Muter.unmute!}} # 0.00023848s
  # seems actually like reasonable speed
  Muter.unmute!
end

Version data entries

55 entries across 55 versions & 2 rubygems

Version Path
content-editing-movie-player-0.38.0 spec/muter.spec.rb
sensible-cinema-0.35.3 spec/muter.spec.rb
sensible-cinema-0.34.0 spec/muter.spec.rb
sensible-cinema-0.28.1 spec/muter.spec.rb
sensible-cinema-0.28.0 spec/muter.spec.rb
sensible-cinema-0.27.0 spec/muter.spec.rb
sensible-cinema-0.26.3 spec/muter.spec.rb
sensible-cinema-0.26.2 spec/muter.spec.rb
sensible-cinema-0.26.1 spec/muter.spec.rb
sensible-cinema-0.26.0 spec/muter.spec.rb
sensible-cinema-0.25.4 spec/muter.spec.rb
sensible-cinema-0.25.3 spec/muter.spec.rb
sensible-cinema-0.25.2 spec/muter.spec.rb
sensible-cinema-0.25.1 spec/muter.spec.rb
sensible-cinema-0.25.0 spec/muter.spec.rb
sensible-cinema-0.24.9 spec/muter.spec.rb
sensible-cinema-0.24.8 spec/muter.spec.rb
sensible-cinema-0.24.7 spec/muter.spec.rb
sensible-cinema-0.24.6 spec/muter.spec.rb
sensible-cinema-0.24.5 spec/muter.spec.rb