(self)
| 152 | ) |
| 153 | |
| 154 | def test_c_attr(self): |
| 155 | Data = self.classes.Data |
| 156 | |
| 157 | b1 = Bundle("b1", Data.d1, Data.d2) |
| 158 | |
| 159 | self.assert_compile( |
| 160 | select(b1.c.d1, b1.c.d2), "SELECT data.d1, data.d2 FROM data" |
| 161 | ) |
| 162 | |
| 163 | @testing.variation( |
| 164 | "stmt_type", ["legacy", "newstyle", "newstyle_w_label_conv"] |
nothing calls this directly
no test coverage detected