# File lib/rudy/machines.rb, line 40
40:     def running?(pos=nil)
41:       group = pos.nil? ? list : [get(pos)].compact
42:       return false if group.nil? || group.empty?
43:       group.collect! { |m| m.instance_running? }
44:       !group.member?(false)
45:     end