Is it possible to mock a static method using Rhino.Mocks?
If Rhino does not support this, is there a pattern or something which would let me accomplish the same?
The only mock framework that I know of that supports mocking statics is TypeMock.
As Rytmis suggested, you need to wrap the statics in something (i.e. an instance class with virtual methods or an interface) that you can then mock out.