> assert_required_fields User::create, :email, :lastname, :password

Instead of User::create, which doesn't return the method as it would
in some other languages but calls it right away, you could use either
one of:

User.method(:create)
lambda {|*args| User.create(*args)}

HTH