-
Notifications
You must be signed in to change notification settings - Fork 0
/
episode_test_helper.rb
34 lines (32 loc) · 1.03 KB
/
episode_test_helper.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module EpisodeTestHelper
def one_hour_episode_html
%Q(<tr>
<td class="c1 ntb"></td>
<td class="c2 ">1:00am</td>
<td class="c3 "> <a href="wzbc-2009-12-18-01-00.m3u">Listen</a></td>
<td class="c3" rowspan="2"><b>The Jam Session </b></td>
</tr>)
end
def one_hour_episode_extra_anchor_html
%Q(<tr>
<td class="c1 ntb"></td>
<td class="c2 ">1:00am</td>
<td class="c3 "> <a href="wzbc-2009-12-18-01-00.m3u">Listen</a></td>
<td class="c3" rowspan="2"><b>The Jam Session </b><a href="http://www.google.com">google</a></td>
</tr>)
end
def two_hour_episode_html
%Q(<tr>
<td class="c1 ntb"></td>
<td class="c2 ">12:00am</td>
<td class="c3 "> <a href="wzbc-2009-12-19-00-00.m3u">Listen</a></td>
<td class="c3" rowspan="1"><b>Forward the Bass</b></td>
</tr>
<tr>
<td class="c1 ntb"></td>
<td class="c2 ">6:00am</td>
<td class="c3 "> <a href="wzbc-2009-12-19-06-00.m3u">Listen</a></td>
<td class="c3" rowspan="1"></td>
</tr>)
end
end