diff --git a/modules/simpletest/tests/theme.test b/modules/simpletest/tests/theme.test index 0ee473e..94894c2 100644 --- a/modules/simpletest/tests/theme.test +++ b/modules/simpletest/tests/theme.test @@ -215,6 +215,20 @@ class ThemeTableTestCase extends DrupalWebTestCase { $this->assertRaw('Header 1', t('Table header was printed.')); } + /** + * Tests that the 'no_striping' option works correctly. + */ + function testThemeTableWithNoStriping() { + $rows = array( + array( + 'data' => array(1), + 'no_striping' => TRUE, + ), + ); + $this->content = theme('table', array('rows' => $rows)); + $this->assertNoRaw('class="odd"', t('Odd/even classes were not added because $no_striping = TRUE.')); + $this->assertNoRaw('no_striping', t('No invalid no_striping HTML attribute was printed.')); + } } /**