Hi,<br><br>I want to be able to get at the described class in my shared behaviour. I'm sure an example will say it better than my words<br><br>describe "my shared", :shared => true do<br><br> it "should tell me what the class is its describing" do
<br> how_do_i_get_the_user_class_here<br> end<br><br>end<br><br>describe User do<br> it_should_behave_like "my shared"<br><br> #...<br>end<br><br>So in my shared behaviour, how do I get access to the User class?
<br><br>Cheers<br>Daniel<br>