Sha256: daad4755ca0170f1032b9d646b9dc45f87ef2d4af2e7eb35695573ee6b212f74
Contents?: true
Size: 714 Bytes
Versions: 11
Compression:
Stored size: 714 Bytes
Contents
require 'test_helper' module Vedeu describe MainLoop do let(:described) { Vedeu::MainLoop } describe '.start!' do subject { described.start! { } } end describe '.stop!' do subject { described.stop! } it { subject; described.instance_variable_get('@loop').must_equal(false) } end describe '.safe_exit_point!' do subject { described.safe_exit_point! } context 'when the application has started' do context 'when the loop is running' do # @todo # it { skip } end context 'when the loop is not running' do # @todo # it { skip } end end end end # MainLoop end # Vedeu
Version data entries
11 entries across 11 versions & 1 rubygems