Sha256: 3664dd16587325a4c7c50bbea1555241e68edce667672579fb8194ee87e5984a
Contents?: true
Size: 529 Bytes
Versions: 2
Compression:
Stored size: 529 Bytes
Contents
require 'spec_helper' class Klass include FileActions end describe FileActions do let(:o) do Klass.new end before do cdfix('file_actions') end it 'create dir file' do path = 'path/to/target' result = o.send(:"file", path) expect(File.exist? path).to be_true end #it 'ls' do # FileActions.ls Dir.pwd #end it 'create_dir_file' do pending end it 'get_tree_in' do pending end it 'self' do pending end it 'autoload_all_files_in' do pending end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ro_support-0.0.7 | spec/lib/ro_support/file_actions_spec.rb |
ro_support-0.0.6 | spec/lib/ro_support/file_actions_spec.rb |