Skip to content

Commit

Permalink
Moved FMyLife and Weather into the standard directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
caius committed Jun 2, 2009
1 parent 4c17eed commit 87e98fd
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
File renamed without changes.
16 changes: 16 additions & 0 deletions fmylife/fmylife_spec.rb
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,16 @@
require "rubygems"
require File.expand_path(File.dirname(__FILE__) + "/fmylife")
require "spec"
require "fakeweb"
require "json"

# True lets it connect to live servers
FakeWeb.allow_net_connect = false

describe FMyLife do

it "should create an instance" do
Blank.new.should be_a_kind_of(Blank)
end

end
16 changes: 16 additions & 0 deletions weather/weather_spec.rb
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,16 @@
require "rubygems"
require File.expand_path(File.dirname(__FILE__) + "/weather")
require "spec"
require "fakeweb"
require "json"

# True lets it connect to live servers
FakeWeb.allow_net_connect = false

describe Weather do

it "should create an instance" do
Weather.new.should be_a_kind_of(Weather)
end

end

0 comments on commit 87e98fd

Please sign in to comment.