diff --git a/spec/views/home/_keep_in_touch.html.haml_spec.rb b/spec/views/home/_keep_in_touch.html.haml_spec.rb
new file mode 100644
index 000000000..637e0ee46
--- /dev/null
+++ b/spec/views/home/_keep_in_touch.html.haml_spec.rb
@@ -0,0 +1,24 @@
+require 'spec_helper'
+
+describe 'home/_keep_in_touch.html.haml', :type => "view" do
+ before :each do
+ render
+ end
+
+ it 'has a heading' do
+ assert_select 'h2', 'Keep in touch'
+ end
+
+ it 'links to twitter' do
+ assert_select 'a', :href => 'http://twitter.com/growstufforg'
+ end
+
+ it 'links to the blog' do
+ assert_select 'a', :href => 'http://blog.growstuff.org'
+ end
+
+ it 'links to the newsletter' do
+ assert_select 'a', :href => 'http://blog.growstuff.org/newsletter'
+ end
+
+end